From: Tom Tromey Date: Wed, 22 Nov 1995 04:19:20 +0000 (+0000) Subject: Look for acconfig.h, config.h.top, and config.h.bot X-Git-Tag: Release-0-25~237 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=caafb04fdae53b0987cae7408fe720beae446266;p=thirdparty%2Fautomake.git Look for acconfig.h, config.h.top, and config.h.bot --- diff --git a/automake.in b/automake.in index 3c3329a80..b4fcfc3b8 100755 --- a/automake.in +++ b/automake.in @@ -36,7 +36,7 @@ usage="Usage: automake [--help] [--version] [Makefile]..." # include in DIST_FILES. NOTE if you add something here, make sure # you add it in the right place -- that is, so that the "--help" still # lines up nicely. -common='THANKS TODO README NEWS COPYING COPYING.LIB INSTALL NLS ChangeLog configure configure.in config.guess config.sub mkinstalldirs install-sh texinfo.tex' +common='THANKS TODO README NEWS COPYING COPYING.LIB INSTALL NLS ChangeLog configure configure.in config.guess config.sub mkinstalldirs install-sh texinfo.tex acconfig.h config.h.top config.h.bot' # NLS nuisances. # Only set `LANG' and `LC_ALL' to "C" if already set. @@ -56,7 +56,8 @@ while test $# -gt 0; do while test $# -gt 0; do echo " $1 $2" shift - shift + # Ignore errors here, in case we have an odd number. + shift 2>/dev/null done exit 0 ;;