odk/examples/DevelopersGuide/FirstSteps/HelloTextTableShape/cxx/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit e64a1dfc36a18de40af6563f9720a9fb1e42cb1b Author: RMZeroFour <ritobrot...@gmail.com> AuthorDate: Wed Apr 10 00:20:12 2024 +0530 Commit: Hossein <hoss...@libreoffice.org> CommitDate: Tue Apr 9 22:21:44 2024 +0200 Fix typo in HelloTextTableShape makefile The HelloTextTableShape example, which was recently ported to C++, has a small typo in line #64 of the Makefile. It gives the user the command to run the example, but it was missing an 'e' at the end. Change-Id: I29af45f21ff78dbda42e5bd9e25e44f06536f7c3 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165915 Tested-by: Jenkins Reviewed-by: Hossein <hoss...@libreoffice.org> diff --git a/odk/examples/DevelopersGuide/FirstSteps/HelloTextTableShape/cxx/Makefile b/odk/examples/DevelopersGuide/FirstSteps/HelloTextTableShape/cxx/Makefile index 1ecaaac747d5..121feca07d61 100644 --- a/odk/examples/DevelopersGuide/FirstSteps/HelloTextTableShape/cxx/Makefile +++ b/odk/examples/DevelopersGuide/FirstSteps/HelloTextTableShape/cxx/Makefile @@ -61,7 +61,7 @@ HelloTextTableShape: $(OUT_BIN)/$(APP_NAME)$(EXE_EXT) @echo -------------------------------------------------------------------------------- @echo Please use the following command to execute the example! @echo - - @echo $(MAKE) HelloTextTableShap.run + @echo $(MAKE) HelloTextTableShape.run @echo -------------------------------------------------------------------------------- %.run: $(OUT_BIN)/HelloTextTableShape$(EXE_EXT)