diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-04-23 07:19:07 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-04-23 07:19:07 +0000 |
commit | 7071033f0ac1520873930b17e095690203a7acd1 (patch) | |
tree | e1ee4e4fa48c3e8f0700cecfaf62c7b599aa390d /lib-src | |
parent | 0512483678f008f7c95fff8202ca38b6089abcd6 (diff) | |
download | emacs-7071033f0ac1520873930b17e095690203a7acd1.tar.gz |
(etags, ctags): Make VERSION a string constant.
Diffstat (limited to 'lib-src')
-rw-r--r-- | lib-src/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
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 |