From: Tom Tromey Date: Mon, 11 Jan 1999 13:53:30 +0000 (+0000) Subject: 1999-01-11 Alexandre Oliva X-Git-Tag: Release-1-4~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=39a9c441dc139ed1208b2cb8fec90a37430f1222;p=thirdparty%2Fautomake.git 1999-01-11 Alexandre Oliva * missing (autoheader): `s' was missing from sed script; grr --- diff --git a/ChangeLog b/ChangeLog index 07282866c..96be560f9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +1999-01-11 Alexandre Oliva + + * missing (autoheader): `s' was missing from sed script; grr + 1999-01-11 Tom Tromey * remake-hdr.am (@STAMP@): Reverted timestamp change. diff --git a/lib/missing b/lib/missing index 5a81ac50e..7789652e8 100755 --- a/lib/missing +++ b/lib/missing @@ -82,7 +82,7 @@ WARNING: \`$1' is missing on your system. You should only need it if you modified \`acconfig.h' or \`configure.in'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." - files=`sed -n '/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' configure.in` + files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' configure.in` test -z "$files" && files="config.h" touch_files= for f in $files; do diff --git a/missing b/missing index 5a81ac50e..7789652e8 100755 --- a/missing +++ b/missing @@ -82,7 +82,7 @@ WARNING: \`$1' is missing on your system. You should only need it if you modified \`acconfig.h' or \`configure.in'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." - files=`sed -n '/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' configure.in` + files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' configure.in` test -z "$files" && files="config.h" touch_files= for f in $files; do