diff options
| author | Gerd Moellmann | 2001-09-05 14:46:26 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-09-05 14:46:26 +0000 |
| commit | 3b74127de1a11177e910cab532fabb7d491dd157 (patch) | |
| tree | b04386e3c67dfd573c45fee22459a01a1c01f191 | |
| parent | 54f73af324b7ed66e6c0dc72b215680b29f58fe2 (diff) | |
| download | emacs-3b74127de1a11177e910cab532fabb7d491dd157.tar.gz emacs-3b74127de1a11177e910cab532fabb7d491dd157.zip | |
Avoid `$@' which is handled specially in
Autoconf 2.52. From "Adam J. Richter" <adam@yggdrasil.com>.
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | configure.in | 4 |
2 files changed, 7 insertions, 2 deletions
| @@ -1,3 +1,8 @@ | |||
| 1 | 2001-09-05 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * configure.in: Avoid `$@' which is handled specially in | ||
| 4 | Autoconf 2.52. From "Adam J. Richter" <adam@yggdrasil.com>. | ||
| 5 | |||
| 1 | 2001-09-04 Andrew Innes <andrewi@gnu.org> | 6 | 2001-09-04 Andrew Innes <andrewi@gnu.org> |
| 2 | 7 | ||
| 3 | * admin/nt/makedist.bat: Remove reference to obsolete file | 8 | * admin/nt/makedist.bat: Remove reference to obsolete file |
diff --git a/configure.in b/configure.in index 6d3c9d7b44f..650fdbc3cb9 100644 --- a/configure.in +++ b/configure.in | |||
| @@ -2288,7 +2288,7 @@ echo creating lib-src/Makefile | |||
| 2288 | sed -e '/start of cpp stuff/q' \ | 2288 | sed -e '/start of cpp stuff/q' \ |
| 2289 | < Makefile.c > junk1.c | 2289 | < Makefile.c > junk1.c |
| 2290 | sed -e '1,/start of cpp stuff/d'\ | 2290 | sed -e '1,/start of cpp stuff/d'\ |
| 2291 | -e 's@/\*\*/#\(.*\)$@/* \1 */@' \ | 2291 | -e 's,/\*\*/#\(.*\)$,/* \1 */,' \ |
| 2292 | < Makefile.c > junk.c | 2292 | < Makefile.c > junk.c |
| 2293 | $CPP $undefs -I. -I$top_srcdir/src $CPPFLAGS junk.c | \ | 2293 | $CPP $undefs -I. -I$top_srcdir/src $CPPFLAGS junk.c | \ |
| 2294 | sed -e 's/^ / /' -e '/^#/d' -e '/^[ ]*$/d' > junk2.c | 2294 | sed -e 's/^ / /' -e '/^#/d' -e '/^[ ]*$/d' > junk2.c |
| @@ -2304,7 +2304,7 @@ echo creating src/Makefile | |||
| 2304 | sed -e '/start of cpp stuff/q' \ | 2304 | sed -e '/start of cpp stuff/q' \ |
| 2305 | < Makefile.c > junk1.c | 2305 | < Makefile.c > junk1.c |
| 2306 | sed -e '1,/start of cpp stuff/d'\ | 2306 | sed -e '1,/start of cpp stuff/d'\ |
| 2307 | -e 's@/\*\*/#\(.*\)$@/* \1 */@' \ | 2307 | -e 's,/\*\*/#\(.*\)$,/* \1 */,' \ |
| 2308 | < Makefile.c > junk.c | 2308 | < Makefile.c > junk.c |
| 2309 | $CPP $undefs -I. -I$top_srcdir/src $CPPFLAGS junk.c | \ | 2309 | $CPP $undefs -I. -I$top_srcdir/src $CPPFLAGS junk.c | \ |
| 2310 | sed -e 's/^ / /' -e '/^#/d' -e '/^[ ]*$/d' > junk2.c | 2310 | sed -e 's/^ / /' -e '/^#/d' -e '/^[ ]*$/d' > junk2.c |