summaryrefslogtreecommitdiff
path: root/libtool
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-05-06 05:18:25 +0000
committerChris Larson <clarson@kergoth.com>2004-05-06 05:18:25 +0000
commit95b67de37447d7c30164eeec818429f4b34e6fc4 (patch)
treeea0f366bc94e38708b76914a96f43c4f0470cb1b /libtool
parent606503bd1fe275b8ee2662d7ea3c44d3378d4ef5 (diff)
Merge openembedded@openembedded.bkbits.net:packages
into linux.local:/home/kergoth/code/packages 2004/05/06 01:18:02-04:00 local!kergoth Add --exclude option to autoreconf for skipping steps, and make the libtool builds use it to prevent libtoolize executions. BKrev: 4099caa12T0gLv19-hdUOMnY18dueA
Diffstat (limited to 'libtool')
-rw-r--r--libtool/libtool_1.5.oe13
1 files changed, 13 insertions, 0 deletions
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
+}