diff --git a/example/Makefile b/example/Makefile index 34a3a72217d08a351423309463e5d2fcad8530a2..150e90a39695759a910a32f22130956e25b14aee 100644 --- a/example/Makefile +++ b/example/Makefile @@ -15,6 +15,6 @@ example.pdf: example.tex meta.tex meta.tex: Makefile .FORCE rm -f $@ - echo '% GENERATED FILE -- edit this in the Makefile' >>$@ - /bin/echo '\\newcommand{\\vcsRevision}{$(GITVERSION)$(GITDIRTY)}' >>$@ - /bin/echo '\\newcommand{\\vcsDate}{$(GITDATE)}' >>$@ + printf "%s\n" "% GENERATED FILE -- edit this in the Makefile" >>$@ + printf "%s\n" "\newcommand{\vcsRevision}{$(GITVERSION)$(GITDIRTY)}" >>$@ + printf "%s\n" "\newcommand{\vcsDate}{$(GITDATE)}" >>$@