]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
* automake.in (check_gnu_standards, check_gnits_standards): Pass
authorAlexandre Duret-Lutz <adl@gnu.org>
Wed, 12 Dec 2001 11:13:12 +0000 (11:13 +0000)
committerAlexandre Duret-Lutz <adl@gnu.org>
Wed, 12 Dec 2001 11:13:12 +0000 (11:13 +0000)
"$am_file.am" as WHERE argument to require_file.

ChangeLog
automake.in

index 50f91a20a6fe818049076fa611be896a1c34808a..1dcf986e62271a999ceb0f298d8356177f5fe199 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-12-12  Alexandre Duret-Lutz  <duret_g@epita.fr>
+
+       * automake.in (check_gnu_standards, check_gnits_standards): Pass
+       "$am_file.am" as WHERE argument to require_file.
+
 2001-12-12  Alexandre Duret-Lutz  <duret_g@epita.fr>
 
        * m4/python.m4 (AM_PATH_PYTHON): Check all known Python interpreters
index 7f075c8598d2ea17648f1f6ddb3d73f00c7eec14..9b538bbbdf1c25d46136b7d77df9d837222e334d 100755 (executable)
@@ -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');
     }
 }