From: Akim Demaille Date: Mon, 5 Mar 2001 14:42:21 +0000 (+0000) Subject: * automake.in: Require AC_PROG_INSTALL in... X-Git-Tag: handle-languages~182 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=91219a8d61dcf20faf7e74058945fa5bf62200d8;p=thirdparty%2Fautomake.git * automake.in: Require AC_PROG_INSTALL in... (&scan_autoconf_files): here. --- diff --git a/ChangeLog b/ChangeLog index 0b25b2c7e..c5b720ab2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2001-03-05 Akim Demaille + + * automake.in: Require AC_PROG_INSTALL in... + (&scan_autoconf_files): here. + + 2001-03-05 Akim Demaille * configure.am: New file. diff --git a/automake.in b/automake.in index 79bda3057..f35427c23 100755 --- a/automake.in +++ b/automake.in @@ -919,9 +919,6 @@ foreach $am_file (@input_files) } } -&am_conf_error ("AC_PROG_INSTALL must be used") - if (! $seen_prog_install); - exit $exit_status; @@ -4890,6 +4887,9 @@ sub scan_autoconf_files &am_conf_error ("\`AC_PROG_MAKE_SET' must be used") if ! $seen_make_set; + &am_conf_error ("\`AC_PROG_INSTALL' must be used") + if ! $seen_prog_install; + # Look for some files we need. Always check for these. This # check must be done for every run, even those where we are only # looking at a subdir Makefile. We must set relative_dir so that