mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
666 B

  1. diff -dur automake-1.8.5/aclocal.in automake-1.8.5-p/aclocal.in
  2. --- automake-1.8.5/aclocal.in 2004-04-10 19:15:32.000000000 +0200
  3. +++ automake-1.8.5-p/aclocal.in 2005-10-18 22:41:26.000000000 +0200
  4. @@ -640,12 +640,11 @@
  5. # Ignore '#' lines.
  6. next if /^#/;
  7. # strip off newlines and end-of-line comments
  8. - s/\s*\#.*$//;
  9. - chomp ($contents=$_);
  10. - if (-d $contents )
  11. - {
  12. - push (@dirlist, $contents);
  13. - }
  14. + s/\s*\#.*$//; chomp;
  15. + foreach my $dir (glob)
  16. + {
  17. + push (@dirlist, $dir) if -d $dir;
  18. + }
  19. }
  20. close (DEFAULT_DIRLIST);
  21. }
  22. Nur in automake-1.8.5-p: aclocal.in~.
  23. Nur in automake-1.8.5-p: aclocal.in.rej.