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

diff -dur automake-1.9.3/aclocal.in automake-1.9.3-p/aclocal.in
--- automake-1.9.3/aclocal.in 2004-10-10 18:10:24.000000000 +0200
+++ automake-1.9.3-p/aclocal.in 2005-10-18 22:43:23.000000000 +0200
@@ -672,12 +672,11 @@
# Ignore '#' lines.
next if /^#/;
# strip off newlines and end-of-line comments
- s/\s*\#.*$//;
- chomp ($contents=$_);
- if (-d $contents )
- {
- push (@dirlist, $contents);
- }
+ s/\s*\#.*$//; chomp;
+ foreach my $dir (glob)
+ {
+ push (@dirlist, $dir) if -d $dir;
+ }
}
close (DEFAULT_DIRLIST);
}
Nur in automake-1.9.3-p: aclocal.in~.
Nur in automake-1.9.3-p: aclocal.in.rej.