summaryrefslogtreecommitdiff
path: root/meta/recipes-devtools/autoconf/autoconf-2.65/autoreconf-gnuconfigize.patch
diff options
context:
space:
mode:
authorNitin A Kamble <nitin.a.kamble@intel.com>2011-05-24 09:38:17 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-06-06 15:52:15 +0100
commitaa24c1eda4b33b329d330c8bbb6d243dfd924f62 (patch)
tree6e761ada7f17b9bd640ea435f1353e74cbb5003a /meta/recipes-devtools/autoconf/autoconf-2.65/autoreconf-gnuconfigize.patch
parentd2fb8508009d9109935a3a817074f109a87b2e44 (diff)
downloadopenembedded-core-aa24c1eda4b33b329d330c8bbb6d243dfd924f62.tar.gz
openembedded-core-aa24c1eda4b33b329d330c8bbb6d243dfd924f62.tar.bz2
openembedded-core-aa24c1eda4b33b329d330c8bbb6d243dfd924f62.tar.xz
openembedded-core-aa24c1eda4b33b329d330c8bbb6d243dfd924f62.zip
autoconf: upgrade from 2.65 to 2.68
And rebase the patches to the newer code. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
Diffstat (limited to 'meta/recipes-devtools/autoconf/autoconf-2.65/autoreconf-gnuconfigize.patch')
-rw-r--r--meta/recipes-devtools/autoconf/autoconf-2.65/autoreconf-gnuconfigize.patch38
1 files changed, 0 insertions, 38 deletions
diff --git a/meta/recipes-devtools/autoconf/autoconf-2.65/autoreconf-gnuconfigize.patch b/meta/recipes-devtools/autoconf/autoconf-2.65/autoreconf-gnuconfigize.patch
deleted file mode 100644
index 5ff18c235..000000000
--- a/meta/recipes-devtools/autoconf/autoconf-2.65/autoreconf-gnuconfigize.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-Upstream-Status: Pending
-
-#
-# 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. #