diff options
| author | Glenn Morris | 2008-04-24 05:38:28 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-04-24 05:38:28 +0000 |
| commit | 928ad6435e49441415684b375d4fa63aea280b0a (patch) | |
| tree | 712d217f0a3820a16b53627b10f40b23aebd4565 | |
| parent | 285935fe5dbd6c60096abe4991ddac12d81a3ab6 (diff) | |
| download | emacs-928ad6435e49441415684b375d4fa63aea280b0a.tar.gz emacs-928ad6435e49441415684b375d4fa63aea280b0a.zip | |
Adam Go biowski <adamg at pld-linux.org> (tiny change)
(etags${EXEEXT}, ctags${EXEEXT}): Fix quote typo.
| -rw-r--r-- | lib-src/ChangeLog | 4 | ||||
| -rw-r--r-- | lib-src/Makefile.in | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index 63cc416cad7..2753a9db71c 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2008-04-24 Adam Go,B3j(Bbiowski <adamg@pld-linux.org> (tiny change) | ||
| 2 | |||
| 3 | * Makefile.in (etags${EXEEXT}, ctags${EXEEXT}): Fix quote typo. | ||
| 4 | |||
| 1 | 2008-04-18 Steve Grubb <sgrubb@redhat.com> (tiny change) | 5 | 2008-04-18 Steve Grubb <sgrubb@redhat.com> (tiny change) |
| 2 | 6 | ||
| 3 | * vcdiff: Use mktemp (CVE-2008-1694). | 7 | * vcdiff: Use mktemp (CVE-2008-1694). |
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in index cb862625249..a4d85724384 100644 --- a/lib-src/Makefile.in +++ b/lib-src/Makefile.in | |||
| @@ -416,7 +416,7 @@ regex.o: $(srcdir)/../src/regex.c $(srcdir)/../src/regex.h ../src/config.h | |||
| 416 | ${CC} -c ${BASE_CFLAGS} -DCONFIG_BROKETS -DINHIBIT_STRING_HEADER ${srcdir}/../src/regex.c | 416 | ${CC} -c ${BASE_CFLAGS} -DCONFIG_BROKETS -DINHIBIT_STRING_HEADER ${srcdir}/../src/regex.c |
| 417 | 417 | ||
| 418 | etags${EXEEXT}: ${srcdir}/etags.c $(GETOPTDEPS) $(REGEXPDEPS) ../src/config.h | 418 | etags${EXEEXT}: ${srcdir}/etags.c $(GETOPTDEPS) $(REGEXPDEPS) ../src/config.h |
| 419 | $(CC) ${ALL_CFLAGS} -DEMACS_NAME="\"GNU Emacs"\" -DVERSION="\"${version}\"" ${srcdir}/etags.c $(GETOPTOBJS) $(REGEXPOBJ) $(LOADLIBES) -o etags | 419 | $(CC) ${ALL_CFLAGS} -DEMACS_NAME="\"GNU Emacs\"" -DVERSION="\"${version}\"" ${srcdir}/etags.c $(GETOPTOBJS) $(REGEXPOBJ) $(LOADLIBES) -o etags |
| 420 | 420 | ||
| 421 | ebrowse${EXEEXT}: ${srcdir}/ebrowse.c $(GETOPTDEPS) ../src/config.h | 421 | ebrowse${EXEEXT}: ${srcdir}/ebrowse.c $(GETOPTDEPS) ../src/config.h |
| 422 | $(CC) ${ALL_CFLAGS} -DVERSION="\"${version}\"" ${srcdir}/ebrowse.c $(GETOPTOBJS) $(LOADLIBES) -o ebrowse | 422 | $(CC) ${ALL_CFLAGS} -DVERSION="\"${version}\"" ${srcdir}/ebrowse.c $(GETOPTOBJS) $(LOADLIBES) -o ebrowse |
| @@ -424,7 +424,7 @@ ebrowse${EXEEXT}: ${srcdir}/ebrowse.c $(GETOPTDEPS) ../src/config.h | |||
| 424 | /* We depend on etags to assure that parallel makes don\'t write two | 424 | /* We depend on etags to assure that parallel makes don\'t write two |
| 425 | etags.o files on top of each other. */ | 425 | etags.o files on top of each other. */ |
| 426 | ctags${EXEEXT}: etags${EXEEXT} | 426 | ctags${EXEEXT}: etags${EXEEXT} |
| 427 | $(CC) ${ALL_CFLAGS} -DCTAGS -DEMACS_NAME="\"GNU Emacs"\" -DVERSION="\"${version}\"" ${srcdir}/etags.c $(GETOPTOBJS) $(REGEXPOBJ) $(LOADLIBES) -o ctags | 427 | $(CC) ${ALL_CFLAGS} -DCTAGS -DEMACS_NAME="\"GNU Emacs\"" -DVERSION="\"${version}\"" ${srcdir}/etags.c $(GETOPTOBJS) $(REGEXPOBJ) $(LOADLIBES) -o ctags |
| 428 | 428 | ||
| 429 | profile${EXEEXT}: ${srcdir}/profile.c ../src/config.h | 429 | profile${EXEEXT}: ${srcdir}/profile.c ../src/config.h |
| 430 | $(CC) ${ALL_CFLAGS} ${srcdir}/profile.c $(LOADLIBES) -o profile | 430 | $(CC) ${ALL_CFLAGS} ${srcdir}/profile.c $(LOADLIBES) -o profile |