From: Akim Demaille Date: Tue, 27 Mar 2001 12:02:15 +0000 (+0000) Subject: * Makefile.am, configure.in: autoupdate is a Perl script. X-Git-Tag: autoconf-2.50~79 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b0b540a4a39278b85bf747f43acaaa7ab4ee675d;p=thirdparty%2Fautoconf.git * Makefile.am, configure.in: autoupdate is a Perl script. --- diff --git a/ChangeLog b/ChangeLog index 488b8c9ab..e500079a0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2001-03-27 Tim Van Holder + + * Makefile.am, configure.in: autoupdate is a Perl script. + 2001-03-20 Akim Demaille * doc/autoconf.texi (Limitations of Usual Tools): Some about diff --git a/Makefile.am b/Makefile.am index ecc946d8e..0bb857842 100644 --- a/Makefile.am +++ b/Makefile.am @@ -27,8 +27,8 @@ SUFFIXES = .m4 .m4f ACLOCAL_AMFLAGS = --version >/dev/null && touch aclocal.m4 WGET = wget -bin_SCRIPTS = autoconf autoheader autoreconf autoupdate ifnames @PERLSCRIPTS@ -EXTRA_SCRIPTS = autoscan +bin_SCRIPTS = autoconf autoheader autoreconf ifnames @PERLSCRIPTS@ +EXTRA_SCRIPTS = autoscan autoupdate # FIXME: Current Automakes are blind and cannot see inner AC_SUBST, # so help it. diff --git a/Makefile.in b/Makefile.in index fd7694bde..b573a743c 100644 --- a/Makefile.in +++ b/Makefile.in @@ -73,8 +73,8 @@ SUFFIXES = .m4 .m4f ACLOCAL_AMFLAGS = --version >/dev/null && touch aclocal.m4 WGET = wget -bin_SCRIPTS = autoconf autoheader autoreconf autoupdate ifnames @PERLSCRIPTS@ -EXTRA_SCRIPTS = autoscan +bin_SCRIPTS = autoconf autoheader autoreconf ifnames @PERLSCRIPTS@ +EXTRA_SCRIPTS = autoscan autoupdate # FIXME: Current Automakes are blind and cannot see inner AC_SUBST, # so help it. diff --git a/NEWS b/NEWS index 1f8e64f08..ce3a8c657 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,4 @@ -* Major changes in Autoconf 2.49d -*- outline -*- +* Major changes in Autoconf 2.49e -*- outline -*- ** Lots of bug fixes Way too many for us to spell them out. Check out ChangeLog if you diff --git a/configure b/configure index ce30b1993..293fabe52 100755 --- a/configure +++ b/configure @@ -1376,10 +1376,10 @@ echo "${ECHO_T}no" >&6 fi if test "$PERL" != no; then - PERLSCRIPTS=autoscan + PERLSCRIPTS="autoscan autoupdate" else - { echo "$as_me:1381: WARNING: autoscan will not be built since perl is not found" >&5 -echo "$as_me: WARNING: autoscan will not be built since perl is not found" >&2;} + { echo "$as_me:1381: WARNING: autoscan and autoupdate will not be built since perl is not found" >&5 +echo "$as_me: WARNING: autoscan and autoupdate will not be built since perl is not found" >&2;} fi # Find a good install program. We prefer a C program (faster), diff --git a/configure.in b/configure.in index 76be21b30..a0b8de087 100644 --- a/configure.in +++ b/configure.in @@ -31,9 +31,9 @@ AC_PATH_PROG(PERL, perl, no) AC_SUBST(PERL)dnl AC_SUBST(PERLSCRIPTS)dnl if test "$PERL" != no; then - PERLSCRIPTS=autoscan + PERLSCRIPTS="autoscan autoupdate" else - AC_MSG_WARN([autoscan will not be built since perl is not found]) + AC_MSG_WARN([autoscan and autoupdate will not be built since perl is not found]) fi AC_PROG_INSTALL