Mercurial > emacs
changeset 39148:b18544b16624
Avoid `$@' which is handled specially in
Autoconf 2.52. From "Adam J. Richter" <adam@yggdrasil.com>.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Wed, 05 Sep 2001 14:46:12 +0000 |
parents | 1b05f1550efa |
children | 8fa67cebeb53 |
files | configure.in |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/configure.in Wed Sep 05 13:38:49 2001 +0000 +++ b/configure.in Wed Sep 05 14:46:12 2001 +0000 @@ -2288,7 +2288,7 @@ 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 @@ 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