From: Phil Blundell Date: Fri, 4 Jun 2004 10:08:22 +0000 (+0000) Subject: try to fix autotools lossage X-Git-Tag: Release-2010-05/1~18878 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b8c5879897015a6abe437c2c36f18477f6ddd767;p=openembedded.git try to fix autotools lossage BKrev: 40c04a16Svf_qJvI1hU510vfB5vbVg --- diff --git a/guile/configure-lossage.patch b/guile/configure-lossage.patch new file mode 100644 index 0000000000..e69de29bb2 diff --git a/guile/guile_1.6.4.oe b/guile/guile_1.6.4.oe index 13763a11b3..f0c66adf2b 100644 --- a/guile/guile_1.6.4.oe +++ b/guile/guile_1.6.4.oe @@ -1,16 +1,19 @@ MAINTAINER = "Phil Blundell " -SRC_URI = "http://ftp.gnu.org/pub/gnu/guile/guile-${PV}.tar.gz" +SRC_URI = "http://ftp.gnu.org/pub/gnu/guile/guile-${PV}.tar.gz \ + file://configure-lossage.patch;patch=1" DEPENDS = "guile-native" inherit autotools -do_configure() { - # no autoreconf, thanks - oe_runconf +acpaths = "-I ${S}/guile-config" + +do_configure_prepend() { + libtoolize --force + (cd guile-readline; libtoolize --force) } do_compile() { - (cd libguile; oe_runmake CC="${BUILD_CC}" CFLAGS="${BUILD_CFLAGS}" guile_filter_doc_snarfage) + (cd libguile; oe_runmake CC="${BUILD_CC}" CFLAGS="${BUILD_CFLAGS}" LDFLAGS="${BUILD_LDFLAGS}" guile_filter_doc_snarfage) oe_runmake preinstguile="`which guile`" }