# HG changeset patch # User Gerd Moellmann # Date 999701172 0 # Node ID b18544b16624c0523b49dbae3bf6dd972ecf23a5 # Parent 1b05f1550efabd655e9dd36a3a425fb91309e251 Avoid `$@' which is handled specially in Autoconf 2.52. From "Adam J. Richter" . diff -r 1b05f1550efa -r b18544b16624 configure.in --- 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