diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-01-29 16:00:31 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-01-29 16:00:31 +0000 |
commit | 50d9304068e5ee151b2bc29e14adbfaabe203738 (patch) | |
tree | 368f60471b69077cfffe97097cbd08b863adda28 /meta/packages/autoconf/autoconf-2.65/autoreconf-gnuconfigize.patch | |
parent | 4420ddc284b4eae1a6165de30de165347a03334c (diff) | |
download | openembedded-core-50d9304068e5ee151b2bc29e14adbfaabe203738.tar.gz openembedded-core-50d9304068e5ee151b2bc29e14adbfaabe203738.tar.bz2 openembedded-core-50d9304068e5ee151b2bc29e14adbfaabe203738.zip |
autoconf: 2.63 -> 2.65 (not default)
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/packages/autoconf/autoconf-2.65/autoreconf-gnuconfigize.patch')
-rw-r--r-- | meta/packages/autoconf/autoconf-2.65/autoreconf-gnuconfigize.patch | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/meta/packages/autoconf/autoconf-2.65/autoreconf-gnuconfigize.patch b/meta/packages/autoconf/autoconf-2.65/autoreconf-gnuconfigize.patch new file mode 100644 index 0000000000..851d24330d --- /dev/null +++ b/meta/packages/autoconf/autoconf-2.65/autoreconf-gnuconfigize.patch @@ -0,0 +1,37 @@ + +# +# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher +# + +Index: autoconf-2.63/bin/autoreconf.in +=================================================================== +--- autoconf-2.63.orig/bin/autoreconf.in 2008-12-31 17:43:55.000000000 +0000 ++++ autoconf-2.63/bin/autoreconf.in 2008-12-31 17:46:16.000000000 +0000 +@@ -58,7 +58,7 @@ + $help = "Usage: $0 [OPTION]... [DIRECTORY]... + + Run `autoconf' (and `autoheader', `aclocal', `automake', `autopoint' +-(formerly `gettextize'), and `libtoolize' where appropriate) ++(formerly `gettextize'), `libtoolize', and `gnu-configize' where appropriate) + repeatedly to remake the GNU Build System files in specified + DIRECTORIES and their subdirectories (defaulting to `.'). + +@@ -115,6 +115,7 @@ + my $libtoolize = $ENV{'LIBTOOLIZE'} || 'libtoolize'; + my $autopoint = $ENV{'AUTOPOINT'} || 'autopoint'; + my $make = $ENV{'MAKE'} || 'make'; ++my $gnuconfigize = $ENV{'GNUCONFIGIZE'} || 'gnu-configize'; + + # --install -- as --add-missing in other tools. + my $install = 0; +@@ -644,6 +645,10 @@ + } + } + ++ @ex = grep (/^gnu-configize$/, @exclude); ++ if ($#ex == -1) { ++ xsystem ("$gnuconfigize"); ++ } + + # -------------- # + # Running make. # |