diff options
author | Richard Purdie <richard@openedhand.com> | 2007-11-12 11:30:16 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2007-11-12 11:30:16 +0000 |
commit | 7fc5d6eeea6c633682f4cc4759f9e9e99cb2c309 (patch) | |
tree | 127b290374d663c062f472f5e619f5f7aa482995 /meta/classes/pkgconfig.bbclass | |
parent | ba2e1f4d933c37b372d6749d64614f2510ee9d7b (diff) | |
download | poky-7fc5d6eeea6c633682f4cc4759f9e9e99cb2c309.tar.gz |
pkgconfig: Switch to using sysroot simplifying pkgconfig files. Requires a full rebuild.
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3125 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/classes/pkgconfig.bbclass')
-rw-r--r-- | meta/classes/pkgconfig.bbclass | 21 |
1 files changed, 2 insertions, 19 deletions
diff --git a/meta/classes/pkgconfig.bbclass b/meta/classes/pkgconfig.bbclass index e2751d0ef3..d65f8a6253 100644 --- a/meta/classes/pkgconfig.bbclass +++ b/meta/classes/pkgconfig.bbclass | |||
@@ -2,27 +2,10 @@ inherit base | |||
2 | 2 | ||
3 | DEPENDS_prepend = "pkgconfig-native " | 3 | DEPENDS_prepend = "pkgconfig-native " |
4 | 4 | ||
5 | # The namespaces can clash here hence the two step replace | ||
6 | def get_pkgconfig_mangle(d): | ||
7 | import bb.data | ||
8 | s = "-e ''" | ||
9 | if not bb.data.inherits_class('native', d): | ||
10 | s += " -e 's:=${libdir}:=OELIBDIR:;'" | ||
11 | s += " -e 's:=${includedir}:=OEINCDIR:;'" | ||
12 | s += " -e 's:=${datadir}:=OEDATADIR:'" | ||
13 | s += " -e 's:=${prefix}:=OEPREFIX:'" | ||
14 | s += " -e 's:=${exec_prefix}:=OEEXECPREFIX:'" | ||
15 | s += " -e 's:OELIBDIR:${STAGING_LIBDIR}:;'" | ||
16 | s += " -e 's:OEINCDIR:${STAGING_INCDIR}:;'" | ||
17 | s += " -e 's:OEDATADIR:${STAGING_DATADIR}:'" | ||
18 | s += " -e 's:OEPREFIX::${STAGING_DIR_HOST}${layout_prefix}:'" | ||
19 | s += " -e 's:OEEXECPREFIX::${STAGING_DIR_HOST}${layout_exec_prefix}:'" | ||
20 | return s | ||
21 | |||
22 | do_stage_append () { | 5 | do_stage_append () { |
6 | install -d ${PKG_CONFIG_DIR} | ||
23 | for pc in `find ${S} -name '*.pc' -type f | grep -v -- '-uninstalled.pc$'`; do | 7 | for pc in `find ${S} -name '*.pc' -type f | grep -v -- '-uninstalled.pc$'`; do |
24 | pcname=`basename $pc` | 8 | pcname=`basename $pc` |
25 | install -d ${PKG_CONFIG_DIR} | 9 | cat $pc > ${PKG_CONFIG_DIR}/$pcname |
26 | cat $pc | sed ${@get_pkgconfig_mangle(d)} > ${PKG_CONFIG_DIR}/$pcname | ||
27 | done | 10 | done |
28 | } | 11 | } |