diff options
| author | Glenn Morris | 2008-04-24 05:39:19 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-04-24 05:39:19 +0000 |
| commit | 63b9b6057fffc5a734f201db1cd26d7a33b1e526 (patch) | |
| tree | 9d7f653b4c9ba1921620942831a655b77b70ec3f /lib-src | |
| parent | 08861c5cb87e91e83e5b0bf53cb53c1377434c8f (diff) | |
| download | emacs-63b9b6057fffc5a734f201db1cd26d7a33b1e526.tar.gz emacs-63b9b6057fffc5a734f201db1cd26d7a33b1e526.zip | |
Adam Go biowski <adamg at pld-linux.org> (tiny change)
(etags${EXEEXT}, ctags${EXEEXT}): Fix quote typo.
Diffstat (limited to 'lib-src')
| -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 61a0a0c0310..26dec3b0b24 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2008-04-24 Adam Gołębiowski <adamg@pld-linux.org> (tiny change) | ||
| 2 | |||
| 3 | * Makefile.in (etags${EXEEXT}, ctags${EXEEXT}): Fix quote typo. | ||
| 4 | |||
| 1 | 2008-04-10 Jason Rumney <jasonr@gnu.org> | 5 | 2008-04-10 Jason Rumney <jasonr@gnu.org> |
| 2 | 6 | ||
| 3 | * makefile.w32-in (CLIENTRES): New variable and target. | 7 | * makefile.w32-in (CLIENTRES): New variable and target. |
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in index 759b554177c..35275d9a764 100644 --- a/lib-src/Makefile.in +++ b/lib-src/Makefile.in | |||
| @@ -401,7 +401,7 @@ regex.o: $(srcdir)/../src/regex.c $(srcdir)/../src/regex.h ../src/config.h | |||
| 401 | ${CC} -c ${BASE_CFLAGS} -DCONFIG_BROKETS -DINHIBIT_STRING_HEADER ${srcdir}/../src/regex.c | 401 | ${CC} -c ${BASE_CFLAGS} -DCONFIG_BROKETS -DINHIBIT_STRING_HEADER ${srcdir}/../src/regex.c |
| 402 | 402 | ||
| 403 | etags${EXEEXT}: ${srcdir}/etags.c $(GETOPTDEPS) $(REGEXPDEPS) ../src/config.h | 403 | etags${EXEEXT}: ${srcdir}/etags.c $(GETOPTDEPS) $(REGEXPDEPS) ../src/config.h |
| 404 | $(CC) ${ALL_CFLAGS} -DEMACS_NAME="\"GNU Emacs"\" -DVERSION="\"${version}\"" ${srcdir}/etags.c $(GETOPTOBJS) $(REGEXPOBJ) $(LOADLIBES) -o etags | 404 | $(CC) ${ALL_CFLAGS} -DEMACS_NAME="\"GNU Emacs\"" -DVERSION="\"${version}\"" ${srcdir}/etags.c $(GETOPTOBJS) $(REGEXPOBJ) $(LOADLIBES) -o etags |
| 405 | 405 | ||
| 406 | ebrowse${EXEEXT}: ${srcdir}/ebrowse.c $(GETOPTDEPS) ../src/config.h | 406 | ebrowse${EXEEXT}: ${srcdir}/ebrowse.c $(GETOPTDEPS) ../src/config.h |
| 407 | $(CC) ${ALL_CFLAGS} -DVERSION="\"${version}\"" ${srcdir}/ebrowse.c $(GETOPTOBJS) $(LOADLIBES) -o ebrowse | 407 | $(CC) ${ALL_CFLAGS} -DVERSION="\"${version}\"" ${srcdir}/ebrowse.c $(GETOPTOBJS) $(LOADLIBES) -o ebrowse |
| @@ -409,7 +409,7 @@ ebrowse${EXEEXT}: ${srcdir}/ebrowse.c $(GETOPTDEPS) ../src/config.h | |||
| 409 | /* We depend on etags to assure that parallel makes don\'t write two | 409 | /* We depend on etags to assure that parallel makes don\'t write two |
| 410 | etags.o files on top of each other. */ | 410 | etags.o files on top of each other. */ |
| 411 | ctags${EXEEXT}: etags${EXEEXT} | 411 | ctags${EXEEXT}: etags${EXEEXT} |
| 412 | $(CC) ${ALL_CFLAGS} -DCTAGS -DEMACS_NAME="\"GNU Emacs"\" -DVERSION="\"${version}\"" ${srcdir}/etags.c $(GETOPTOBJS) $(REGEXPOBJ) $(LOADLIBES) -o ctags | 412 | $(CC) ${ALL_CFLAGS} -DCTAGS -DEMACS_NAME="\"GNU Emacs\"" -DVERSION="\"${version}\"" ${srcdir}/etags.c $(GETOPTOBJS) $(REGEXPOBJ) $(LOADLIBES) -o ctags |
| 413 | 413 | ||
| 414 | profile${EXEEXT}: ${srcdir}/profile.c ../src/config.h | 414 | profile${EXEEXT}: ${srcdir}/profile.c ../src/config.h |
| 415 | $(CC) ${ALL_CFLAGS} ${srcdir}/profile.c $(LOADLIBES) -o profile | 415 | $(CC) ${ALL_CFLAGS} ${srcdir}/profile.c $(LOADLIBES) -o profile |