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