From: Holger Schurig Date: Fri, 8 Apr 2005 09:20:25 +0000 (+0000) Subject: fix libpcreposix.la X-Git-Tag: Release-2010-05/1~14474 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8ad1fb5f8da455e72f5691515d617307d56b8331;p=openembedded.git fix libpcreposix.la BKrev: 42564cd9Q2WftBR205XiAtiuIcBCow --- diff --git a/packages/pcre/pcre_4.4.bb b/packages/pcre/pcre_4.4.bb index fbd7f5c4db..5ba7a1298b 100644 --- a/packages/pcre/pcre_4.4.bb +++ b/packages/pcre/pcre_4.4.bb @@ -25,10 +25,14 @@ do_compile () { } do_stage () { - oe_libinstall -a -so libpcreposix ${STAGING_LIBDIR} oe_libinstall -a -so libpcre ${STAGING_LIBDIR} + oe_libinstall -a -so libpcreposix ${STAGING_LIBDIR} install -m 0644 pcre.h ${STAGING_INCDIR}/ install -m 0644 pcreposix.h ${STAGING_INCDIR}/ + + # pcreposix linked originally to the libpcre in it's working directory. That messed + # the .la file up. I fix this manually here: + sed -i 's:${S}:${STAGING_LIBDIR}:' ${STAGING_LIBDIR}/libpcreposix.la } FILES_${PN} = "${libdir}/lib*.so*"