summaryrefslogtreecommitdiffstats
path: root/meta/packages/autoconf/autoconf-2.61/autoreconf-gnuconfigize.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/packages/autoconf/autoconf-2.61/autoreconf-gnuconfigize.patch')
-rw-r--r--meta/packages/autoconf/autoconf-2.61/autoreconf-gnuconfigize.patch49
1 files changed, 0 insertions, 49 deletions
diff --git a/meta/packages/autoconf/autoconf-2.61/autoreconf-gnuconfigize.patch b/meta/packages/autoconf/autoconf-2.61/autoreconf-gnuconfigize.patch
deleted file mode 100644
index c243ce0216..0000000000
--- a/meta/packages/autoconf/autoconf-2.61/autoreconf-gnuconfigize.patch
+++ /dev/null
@@ -1,49 +0,0 @@
1
2#
3# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher
4#
5
6Index: autoconf-2.61/bin/autoreconf.in
7===================================================================
8--- autoconf-2.61.orig/bin/autoreconf.in 2006-12-14 20:33:52.000000000 +0100
9+++ autoconf-2.61/bin/autoreconf.in 2006-12-14 20:34:28.000000000 +0100
10@@ -58,7 +58,7 @@
11 $help = "Usage: $0 [OPTION] ... [DIRECTORY] ...
12
13 Run `autoconf' (and `autoheader', `aclocal', `automake', `autopoint'
14-(formerly `gettextize'), and `libtoolize' where appropriate)
15+(formerly `gettextize'), `libtoolize', and `gnu-configize' where appropriate)
16 repeatedly to remake the GNU Build System files in specified
17 DIRECTORIES and their subdirectories (defaulting to `.').
18
19@@ -107,12 +107,13 @@
20 ";
21
22 # Lib files.
23-my $autoconf = $ENV{'AUTOCONF'} || '@bindir@/@autoconf-name@';
24-my $autoheader = $ENV{'AUTOHEADER'} || '@bindir@/@autoheader-name@';
25-my $automake = $ENV{'AUTOMAKE'} || 'automake';
26-my $aclocal = $ENV{'ACLOCAL'} || 'aclocal';
27-my $libtoolize = $ENV{'LIBTOOLIZE'} || 'libtoolize';
28-my $autopoint = $ENV{'AUTOPOINT'} || 'autopoint';
29+my $autoconf = $ENV{'AUTOCONF'} || '@bindir@/@autoconf-name@';
30+my $autoheader = $ENV{'AUTOHEADER'} || '@bindir@/@autoheader-name@';
31+my $automake = $ENV{'AUTOMAKE'} || 'automake';
32+my $aclocal = $ENV{'ACLOCAL'} || 'aclocal';
33+my $libtoolize = $ENV{'LIBTOOLIZE'} || 'libtoolize';
34+my $autopoint = $ENV{'AUTOPOINT'} || 'autopoint';
35+my $gnuconfigize = $ENV{'GNUCONFIGIZE'} || 'gnu-configize';
36
37 # --install -- as --add-missing in other tools.
38 my $install = 0;
39@@ -644,6 +645,10 @@
40 }
41 }
42
43+ @ex = grep (/^gnu-configize$/, @exclude);
44+ if ($#ex == -1) {
45+ xsystem ("$gnuconfigize");
46+ }
47
48 # -------------- #
49 # Running make. #