Browse Source

Stepan Kasal, Stefan Fiedler:


			
			
				rocklinux
			
			
		
Stepan Kasal 19 years ago
parent
commit
421365ab9f
3 changed files with 66 additions and 0 deletions
  1. +20
    -0
      package/base/automake/aclocal-glob.patch_automake17
  2. +23
    -0
      package/base/automake/aclocal-glob.patch_automake18
  3. +23
    -0
      package/base/automake/aclocal-glob.patch_automake19

+ 20
- 0
package/base/automake/aclocal-glob.patch_automake17

@ -0,0 +1,20 @@
--- automake-1.7.9.orig/aclocal.in 2003-10-21 15:03:16.000000000 +0200
+++ automake-1.7.9/aclocal.in 2005-10-18 18:00:01.000000000 +0200
@@ -208,12 +208,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);
}

+ 23
- 0
package/base/automake/aclocal-glob.patch_automake18

@ -0,0 +1,23 @@
diff -dur automake-1.8.5/aclocal.in automake-1.8.5-p/aclocal.in
--- automake-1.8.5/aclocal.in 2004-04-10 19:15:32.000000000 +0200
+++ automake-1.8.5-p/aclocal.in 2005-10-18 22:41:26.000000000 +0200
@@ -640,12 +640,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.8.5-p: aclocal.in~.
Nur in automake-1.8.5-p: aclocal.in.rej.

+ 23
- 0
package/base/automake/aclocal-glob.patch_automake19

@ -0,0 +1,23 @@
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.

Loading…
Cancel
Save