101-do-not-require-files.patch 626 B

1234567891011121314151617181920
  1. --- a/bin/automake.in
  2. +++ b/bin/automake.in
  3. @@ -5700,7 +5700,7 @@ sub check_gnu_standards ()
  4. # otherwise require non-.md.
  5. my $required
  6. = (! -f $file && -f "$file.md") ? "$file.md" : $file;
  7. - require_file ("$am_file.am", GNU, $required);
  8. + require_file ("$am_file.am", GNITS, $required);
  9. }
  10. # Accept one of these three licenses; default to COPYING.
  11. @@ -5714,7 +5714,7 @@ sub check_gnu_standards ()
  12. last;
  13. }
  14. }
  15. - require_file ("$am_file.am", GNU, 'COPYING')
  16. + require_file ("$am_file.am", GNITS, 'COPYING')
  17. unless $license;
  18. }