From: Koen Kooi Date: Wed, 25 Jul 2007 12:35:19 +0000 (+0000) Subject: autotools.bbclass: run sed over .la files to removes various occurences to staging... X-Git-Tag: Release-2010-05/1~8868^2~88^2~2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=905009f453a941085816827efbf12f048f18cd54;p=openembedded.git autotools.bbclass: run sed over .la files to removes various occurences to staging, workdir and ${D} --- diff --git a/classes/autotools.bbclass b/classes/autotools.bbclass index 3c555751da..fccf2b6d80 100644 --- a/classes/autotools.bbclass +++ b/classes/autotools.bbclass @@ -139,6 +139,13 @@ autotools_do_configure() { autotools_do_install() { oe_runmake 'DESTDIR=${D}' install + + for i in `find ${D} -name "*.la"` ; do \ + sed -i -e s:${STAGING_LIBDIR}:${libdir}:g $i + sed -i -e s:${D}::g $i + sed -i -e 's:-I${WORKDIR}\S*: :g' $i + sed -i -e 's:-L${WORKDIR}\S*: :g' $i + done } STAGE_TEMP="${WORKDIR}/temp-staging"