From: Gerd Moellmann Date: Wed, 5 Sep 2001 14:46:26 +0000 (+0000) Subject: Avoid `$@' which is handled specially in X-Git-Tag: emacs-pretest-21.0.106~229 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3b74127de1a11177e910cab532fabb7d491dd157;p=emacs.git Avoid `$@' which is handled specially in Autoconf 2.52. From "Adam J. Richter" . --- diff --git a/ChangeLog b/ChangeLog index 9db6658120f..8de82fb52fa 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-09-05 Gerd Moellmann + + * configure.in: Avoid `$@' which is handled specially in + Autoconf 2.52. From "Adam J. Richter" . + 2001-09-04 Andrew Innes * 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 sed -e '/start of cpp stuff/q' \ < Makefile.c > junk1.c sed -e '1,/start of cpp stuff/d'\ - -e 's@/\*\*/#\(.*\)$@/* \1 */@' \ + -e 's,/\*\*/#\(.*\)$,/* \1 */,' \ < Makefile.c > junk.c $CPP $undefs -I. -I$top_srcdir/src $CPPFLAGS junk.c | \ sed -e 's/^ / /' -e '/^#/d' -e '/^[ ]*$/d' > junk2.c @@ -2304,7 +2304,7 @@ echo creating src/Makefile sed -e '/start of cpp stuff/q' \ < Makefile.c > junk1.c sed -e '1,/start of cpp stuff/d'\ - -e 's@/\*\*/#\(.*\)$@/* \1 */@' \ + -e 's,/\*\*/#\(.*\)$,/* \1 */,' \ < Makefile.c > junk.c $CPP $undefs -I. -I$top_srcdir/src $CPPFLAGS junk.c | \ sed -e 's/^ / /' -e '/^#/d' -e '/^[ ]*$/d' > junk2.c