diff options
-rw-r--r-- | autoconf/autoconf-2.59/autoreconf-exclude.patch | 0 | ||||
-rw-r--r-- | autoconf/autoconf_2.59.oe | 1 | ||||
-rw-r--r-- | libtool/libtool_1.5.oe | 13 |
3 files changed, 14 insertions, 0 deletions
diff --git a/autoconf/autoconf-2.59/autoreconf-exclude.patch b/autoconf/autoconf-2.59/autoreconf-exclude.patch new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/autoconf/autoconf-2.59/autoreconf-exclude.patch diff --git a/autoconf/autoconf_2.59.oe b/autoconf/autoconf_2.59.oe index f65c9b006b..bf7a946528 100644 --- a/autoconf/autoconf_2.59.oe +++ b/autoconf/autoconf_2.59.oe @@ -1,6 +1,7 @@ SRC_URI = "${GNU_MIRROR}/autoconf/autoconf-${PV}.tar.bz2 \ file://${FILESDIR}/program_prefix.patch;patch=1 \ file://${FILESDIR}/autoreconf-include.patch;patch=1 \ + file://${FILESDIR}/autoreconf-exclude.patch;patch=1 \ file://${FILESDIR}/autoconf259-update-configscripts.patch;patch=1 \ file://${FILESDIR}/autoheader-nonfatal-warnings.patch;patch=1" DESCRIPTION = "A package of M4 macros to produce scripts to \ diff --git a/libtool/libtool_1.5.oe b/libtool/libtool_1.5.oe index 518d4c6ef5..ccccd6019f 100644 --- a/libtool/libtool_1.5.oe +++ b/libtool/libtool_1.5.oe @@ -12,3 +12,16 @@ S = "${WORKDIR}/libtool-${PV}" inherit autotools acpaths = "-I ${S}/m4" + +do_configure () { + for ac in `find ${S} -name configure.in -o -name configure.ac`; do + dir=`dirname $ac` + set -e + cd $dir + test -f $dir/configure && chmod u+w $dir/configure + oenote Generating configure in $dir + oenote Executing autoreconf --install --force --exclude=libtoolize ${acpaths} + autoreconf --install --force --exclude=libtoolize ${acpaths} + done + oe_runconf +} |