summaryrefslogtreecommitdiff
path: root/libtool/libtool_1.5.oe
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-05-15 05:48:24 +0000
committerChris Larson <clarson@kergoth.com>2004-05-15 05:48:24 +0000
commit08762779003e940a20e98b41c5873daf36d16465 (patch)
treee3de58cb520be07c5099b68d5fbf1e8f36bf478b /libtool/libtool_1.5.oe
parentcaae238326a8b9b629c4c36089897e5c4c61767e (diff)
Merge openembedded@openembedded.bkbits.net:packages
into linux.local:/home/kergoth/code/packages 2004/05/14 23:26:23-05:00 (none)!kergoth Add libtool 1.5.6, and update our libtool-cross and libtool-native builds to that version. BKrev: 40a5af28rpCQzjEwLtpibl8IUzZEUQ
Diffstat (limited to 'libtool/libtool_1.5.oe')
-rw-r--r--libtool/libtool_1.5.oe12
1 files changed, 8 insertions, 4 deletions
diff --git a/libtool/libtool_1.5.oe b/libtool/libtool_1.5.oe
index 6d2092eee5..58c897fc7d 100644
--- a/libtool/libtool_1.5.oe
+++ b/libtool/libtool_1.5.oe
@@ -4,12 +4,16 @@ the complexity of generating special library types (such as shared \
libraries) behind a consistent interface."
SRC_URI = "${GNU_MIRROR}/libtool/libtool-${PV}.tar.gz \
- file://${FILESDIR}/m4.patch;patch=1 \
- file://${FILESDIR}/autotools.patch;patch=1 \
- file://${FILESDIR}/prefix.patch;patch=1"
+ file://${FILESDIR}/autotools.patch;patch=1"
S = "${WORKDIR}/libtool-${PV}"
inherit autotools
-acpaths = "-I ${S}/m4"
EXTRA_AUTORECONF = "--exclude=libtoolize"
+
+do_configure () {
+ find ${S} -name acinclude.m4 | for m4 in `cat`; do
+ cat ${S}/libtool.m4 ${S}/ltdl.m4 > $m4
+ done
+ autotools_do_configure
+}