From 946664a26cd5fe3ec737a729c56e79cdb1f9107d Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Sun, 4 May 2014 23:50:26 +0200 Subject: efl: fix pkg-config files when B!=S Signed-off-by: Martin Jansa --- meta-efl/classes/efl.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-efl/classes/efl.bbclass b/meta-efl/classes/efl.bbclass index bdb58347d3..d8cdd11111 100644 --- a/meta-efl/classes/efl.bbclass +++ b/meta-efl/classes/efl.bbclass @@ -14,7 +14,7 @@ do_configure_prepend() { } do_install_prepend () { - for i in `find ${S}/ -name "*.pc" -type f` ; do \ + for i in `find ${B}/ -name "*.pc" -type f` ; do \ sed -i -e 's:-L${STAGING_LIBDIR}:-L\$\{libdir\}:g' -e 's:-I${STAGING_LIBDIR}:-I\$\{libdir\}:g' -e 's:-I${STAGING_INCDIR}:-I\$\{includedir\}:g' $i done } -- cgit 1.2.3-korg