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

1234567891011121314151617181920212223242526272829
  1. --- a/bin/automake.in
  2. +++ b/bin/automake.in
  3. @@ -4513,7 +4513,7 @@ sub handle_gettext ()
  4. && grep ($_ eq 'intl', @subdirs));
  5. }
  6. - require_file ($ac_gettext_location, GNU, 'ABOUT-NLS');
  7. + require_file ($ac_gettext_location, GNITS, 'ABOUT-NLS');
  8. }
  9. # Emit makefile footer.
  10. @@ -5641,7 +5641,7 @@ sub check_gnu_standards ()
  11. # otherwise require non-.md.
  12. my $required
  13. = (! -f $file && -f "$file.md") ? "$file.md" : $file;
  14. - require_file ("$am_file.am", GNU, $required);
  15. + require_file ("$am_file.am", GNITS, $required);
  16. }
  17. # Accept one of these three licenses; default to COPYING.
  18. @@ -5655,7 +5655,7 @@ sub check_gnu_standards ()
  19. last;
  20. }
  21. }
  22. - require_file ("$am_file.am", GNU, 'COPYING')
  23. + require_file ("$am_file.am", GNITS, 'COPYING')
  24. unless $license;
  25. }