diff options
author | Holger Schurig <schurig@mn-solutions.de> | 2005-04-08 09:20:25 +0000 |
---|---|---|
committer | Holger Schurig <schurig@mn-solutions.de> | 2005-04-08 09:20:25 +0000 |
commit | 8ad1fb5f8da455e72f5691515d617307d56b8331 (patch) | |
tree | 3234c15c653c612ff73681fa1b7fb59ca9f0103d /packages | |
parent | c752d9bdd05e9ddcb606c1cbfc6e092b8cd940fc (diff) |
fix libpcreposix.la
BKrev: 42564cd9Q2WftBR205XiAtiuIcBCow
Diffstat (limited to 'packages')
-rw-r--r-- | packages/pcre/pcre_4.4.bb | 6 |
1 files changed, 5 insertions, 1 deletions
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*" |