]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
guile: remove redundant replacement of .pc file
authorKai Kang <kai.kang@windriver.com>
Tue, 22 Dec 2015 01:04:53 +0000 (09:04 +0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sun, 27 Dec 2015 11:26:59 +0000 (11:26 +0000)
Remove redundant replacement of pkgconfig file and only modify the .pc
file which is installed in ${D}.

Replace /usr/bin with ${bindir} at same time.

Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/recipes-devtools/guile/guile_2.0.11.bb

index 98b465bfdbb134ce1a6ce3c881841d7a883a2048..fa45008e0755fb785c19e5aa195f2fd8acae7cc1 100644 (file)
@@ -57,19 +57,6 @@ do_configure_prepend() {
 
 export GUILE_FOR_BUILD="${BUILD_SYS}-guile"
 
-do_compile_append() {
-       # just for target recipe
-       if [ "${PN}" = "guile" ]
-       then
-               sed -i -e s:${STAGING_DIR_TARGET}::g \
-                      -e s:/${TARGET_SYS}::g \
-                      -e s:-L/usr/lib::g \
-                      -e s:-isystem/usr/include::g \
-                      -e s:,/usr/lib:,\$\{libdir\}:g \
-                         meta/guile-2.0.pc
-       fi
-}
-
 do_install_append_class-native() {
        install -m 0755  ${D}${bindir}/guile ${D}${bindir}/${HOST_SYS}-guile
 
@@ -83,8 +70,10 @@ do_install_append_class-native() {
 
 do_install_append_class-target() {
        # cleanup buildpaths in scripts
-       sed -i -e 's:${STAGING_DIR_NATIVE}::' ${D}/usr/bin/guile-config
-       sed -i -e 's:${STAGING_DIR_HOST}::' ${D}/usr/bin/guile-snarf
+       sed -i -e 's:${STAGING_DIR_NATIVE}::' ${D}${bindir}/guile-config
+       sed -i -e 's:${STAGING_DIR_HOST}::' ${D}${bindir}/guile-snarf
+
+       sed -i -e 's:${STAGING_DIR_TARGET}::g' ${D}${libdir}/pkgconfig/guile-2.0.pc
 }
 
 SYSROOT_PREPROCESS_FUNCS = "guile_cross_config"