diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-08-01 12:07:15 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-08-01 12:07:15 +0000 |
commit | 3980544ebc1ec6ee24e0e178fd1e2dd8e90b3744 (patch) | |
tree | 24e63a9a62dd39e7dd4eeab6783dd69580d91ede /meta/packages/autoconf/autoconf-2.61/autoreconf-gnuconfigize.patch | |
parent | b040fa6b1d185a6bdc66f96dd148bd3f5907204a (diff) | |
download | openembedded-core-3980544ebc1ec6ee24e0e178fd1e2dd8e90b3744.tar.gz openembedded-core-3980544ebc1ec6ee24e0e178fd1e2dd8e90b3744.tar.bz2 openembedded-core-3980544ebc1ec6ee24e0e178fd1e2dd8e90b3744.zip |
autoconf: added 2.61
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2257 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/autoconf/autoconf-2.61/autoreconf-gnuconfigize.patch')
-rw-r--r-- | meta/packages/autoconf/autoconf-2.61/autoreconf-gnuconfigize.patch | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/meta/packages/autoconf/autoconf-2.61/autoreconf-gnuconfigize.patch b/meta/packages/autoconf/autoconf-2.61/autoreconf-gnuconfigize.patch new file mode 100644 index 0000000000..c243ce0216 --- /dev/null +++ b/meta/packages/autoconf/autoconf-2.61/autoreconf-gnuconfigize.patch @@ -0,0 +1,49 @@ + +# +# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher +# + +Index: autoconf-2.61/bin/autoreconf.in +=================================================================== +--- autoconf-2.61.orig/bin/autoreconf.in 2006-12-14 20:33:52.000000000 +0100 ++++ autoconf-2.61/bin/autoreconf.in 2006-12-14 20:34:28.000000000 +0100 +@@ -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 `.'). + +@@ -107,12 +107,13 @@ + "; + + # Lib files. +-my $autoconf = $ENV{'AUTOCONF'} || '@bindir@/@autoconf-name@'; +-my $autoheader = $ENV{'AUTOHEADER'} || '@bindir@/@autoheader-name@'; +-my $automake = $ENV{'AUTOMAKE'} || 'automake'; +-my $aclocal = $ENV{'ACLOCAL'} || 'aclocal'; +-my $libtoolize = $ENV{'LIBTOOLIZE'} || 'libtoolize'; +-my $autopoint = $ENV{'AUTOPOINT'} || 'autopoint'; ++my $autoconf = $ENV{'AUTOCONF'} || '@bindir@/@autoconf-name@'; ++my $autoheader = $ENV{'AUTOHEADER'} || '@bindir@/@autoheader-name@'; ++my $automake = $ENV{'AUTOMAKE'} || 'automake'; ++my $aclocal = $ENV{'ACLOCAL'} || 'aclocal'; ++my $libtoolize = $ENV{'LIBTOOLIZE'} || 'libtoolize'; ++my $autopoint = $ENV{'AUTOPOINT'} || 'autopoint'; ++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. # |