From: Richard M. Stallman Date: Sat, 23 Apr 1994 07:19:07 +0000 (+0000) Subject: (etags, ctags): Make VERSION a string constant. X-Git-Tag: emacs-19.34~8803 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9076a6fce111172999ad585a6fdf386d6ffd17eb;p=emacs.git (etags, ctags): Make VERSION a string constant. --- diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in index 357670ae224..6c9abec7947 100644 --- a/lib-src/Makefile.in +++ b/lib-src/Makefile.in @@ -238,12 +238,12 @@ getopt1.o: ${srcdir}/getopt1.c ${srcdir}/getopt.h ${CC} -c ${CPP_CFLAGS} ${srcdir}/getopt1.c etags: ${srcdir}/etags.c $(GETOPTDEPS) ../src/config.h - $(CC) ${ALL_CFLAGS} -DVERSION=${version} ${srcdir}/etags.c $(GETOPTOBJS) $(LOADLIBES) -o etags + $(CC) ${ALL_CFLAGS} -DVERSION="\"${version}\"" ${srcdir}/etags.c $(GETOPTOBJS) $(LOADLIBES) -o etags /* We depend on etags to assure that parallel makes don't write two etags.o files on top of each other. */ ctags: ${srcdir}/etags.c $(GETOPTDEPS) etags - $(CC) ${ALL_CFLAGS} -DCTAGS -DVERSION=${version} ${srcdir}/etags.c $(GETOPTOBJS) $(LOADLIBES) -o ctags + $(CC) ${ALL_CFLAGS} -DCTAGS -DVERSION="\"${version}\"" ${srcdir}/etags.c $(GETOPTOBJS) $(LOADLIBES) -o ctags wakeup: ${srcdir}/wakeup.c $(CC) ${ALL_CFLAGS} ${srcdir}/wakeup.c $(LOADLIBES) -o wakeup