diff options
| author | Martin Jansa <Martin.Jansa@gmail.com> | 2014-05-04 23:50:26 +0200 |
|---|---|---|
| committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-05-05 18:31:29 +0200 |
| commit | 946664a26cd5fe3ec737a729c56e79cdb1f9107d (patch) | |
| tree | 20f3184b275f61ce01e235d0187262bffcf2d6c5 | |
| parent | 27724be3221da57fc87d5f797502fa7a607730dd (diff) | |
| download | meta-openembedded-946664a26cd5fe3ec737a729c56e79cdb1f9107d.tar.gz | |
efl: fix pkg-config files when B!=S
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
| -rw-r--r-- | meta-efl/classes/efl.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
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() { | |||
| 14 | } | 14 | } |
| 15 | 15 | ||
| 16 | do_install_prepend () { | 16 | do_install_prepend () { |
| 17 | for i in `find ${S}/ -name "*.pc" -type f` ; do \ | 17 | for i in `find ${B}/ -name "*.pc" -type f` ; do \ |
| 18 | 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 | 18 | 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 |
| 19 | done | 19 | done |
| 20 | } | 20 | } |
