From: Alexandre Duret-Lutz Date: Wed, 12 Dec 2001 11:13:12 +0000 (+0000) Subject: * automake.in (check_gnu_standards, check_gnits_standards): Pass X-Git-Tag: Release-1-5b~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7d1eee6bdb3145cb8e32f46cbf3ff4b9b92764f3;p=thirdparty%2Fautomake.git * automake.in (check_gnu_standards, check_gnits_standards): Pass "$am_file.am" as WHERE argument to require_file. --- diff --git a/ChangeLog b/ChangeLog index 50f91a20a..1dcf986e6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-12-12 Alexandre Duret-Lutz + + * automake.in (check_gnu_standards, check_gnits_standards): Pass + "$am_file.am" as WHERE argument to require_file. + 2001-12-12 Alexandre Duret-Lutz * m4/python.m4 (AM_PATH_PYTHON): Check all known Python interpreters diff --git a/automake.in b/automake.in index 7f075c859..9b538bbbd 100755 --- a/automake.in +++ b/automake.in @@ -4927,7 +4927,7 @@ sub check_gnu_standards if ($relative_dir eq '.') { # In top level (or only) directory. - require_file ('', GNU, + require_file ("$am_file.am", GNU, qw(INSTALL NEWS README COPYING AUTHORS ChangeLog)); } @@ -4952,7 +4952,7 @@ sub check_gnits_standards if ($relative_dir eq '.') { # In top level (or only) directory. - require_file ('', GNITS, 'THANKS'); + require_file ("$am_file.am", GNITS, 'THANKS'); } }