# HG changeset patch # User Richard M. Stallman # Date 767085547 0 # Node ID 0f0d9a0f6c4bc2301cf2b1f46fc6faecb466a1fa # Parent 47965b6c21952f17f7c7566c268a4adf449233f2 (etags, ctags): Make VERSION a string constant. diff -r 47965b6c2195 -r 0f0d9a0f6c4b lib-src/Makefile.in --- a/lib-src/Makefile.in Sat Apr 23 07:08:49 1994 +0000 +++ b/lib-src/Makefile.in Sat Apr 23 07:19:07 1994 +0000 @@ -238,12 +238,12 @@ ${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