diff options
author | Richard Purdie <richard@ted.(none)> | 2009-01-02 15:42:12 +0000 |
---|---|---|
committer | Richard Purdie <richard@ted.(none)> | 2009-01-02 15:42:12 +0000 |
commit | cf093fa0f307a4614585f711bf501885cf1fccf6 (patch) | |
tree | 0b1ffbfe33e5e633b6bcf4150c5f3b0eb50edb01 /meta/packages/autoconf/autoconf-2.63/autoreconf-gnuconfigize.patch | |
parent | 2d749dc4cc5509a55bc9fa256a5cfd2df2fbdda5 (diff) | |
download | openembedded-core-cf093fa0f307a4614585f711bf501885cf1fccf6.tar.gz openembedded-core-cf093fa0f307a4614585f711bf501885cf1fccf6.tar.bz2 openembedded-core-cf093fa0f307a4614585f711bf501885cf1fccf6.zip |
autoconf: Add 2.63 (leaving GPLv2 2.61) leaving 2.61 as default since glib-2.0 breaks with 2.63 (site files aren't
being included)
Diffstat (limited to 'meta/packages/autoconf/autoconf-2.63/autoreconf-gnuconfigize.patch')
-rw-r--r-- | meta/packages/autoconf/autoconf-2.63/autoreconf-gnuconfigize.patch | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/meta/packages/autoconf/autoconf-2.63/autoreconf-gnuconfigize.patch b/meta/packages/autoconf/autoconf-2.63/autoreconf-gnuconfigize.patch new file mode 100644 index 0000000000..851d24330d --- /dev/null +++ b/meta/packages/autoconf/autoconf-2.63/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. # |