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.

20 lines
528 B

  1. --- automake-1.7.9.orig/aclocal.in 2003-10-21 15:03:16.000000000 +0200
  2. +++ automake-1.7.9/aclocal.in 2005-10-18 18:00:01.000000000 +0200
  3. @@ -208,12 +208,11 @@
  4. # Ignore '#' lines.
  5. next if /^#/;
  6. # strip off newlines and end-of-line comments
  7. - s/\s*\#.*$//;
  8. - chomp ($contents=$_);
  9. - if (-d $contents )
  10. - {
  11. - push (@dirlist, $contents);
  12. - }
  13. + s/\s*\#.*$//; chomp;
  14. + foreach my $dir (glob)
  15. + {
  16. + push (@dirlist, $dir) if -d $dir;
  17. + }
  18. }
  19. close (DEFAULT_DIRLIST);
  20. }