diff options
author | Koen Kooi <koen@openembedded.org> | 2008-10-31 11:38:44 +0100 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2008-10-31 11:38:44 +0100 |
commit | 037319d0bffb37a6cbc6f8a6a64135fa9169e437 (patch) | |
tree | 6b868e77bb458a39b01dd644a463d021bc771649 /packages/icu | |
parent | b694b15ff48d0a019db7bf4c3c622823a7da93c4 (diff) |
icu 3.6: sed binconfig file so that -I/usr/include doesn't end up in cflags for e.g. webkit
Diffstat (limited to 'packages/icu')
-rw-r--r-- | packages/icu/icu_3.6.bb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/packages/icu/icu_3.6.bb b/packages/icu/icu_3.6.bb index 91b25adbe9..1dbdf94b3a 100644 --- a/packages/icu/icu_3.6.bb +++ b/packages/icu/icu_3.6.bb @@ -1,7 +1,7 @@ require icu-3.6.inc DEPENDS += "icu-native" -PR = "r3" +PR = "r4" SRC_URI += "file://use-g++-for-linking.patch;patch=1" @@ -34,6 +34,11 @@ FILES_libicuio = "${libdir}/libicuio.so.*" do_stage() { autotools_stage_all +} + +# We need to append this so it runs *after* binconfig.do_stage +do_stage_append() { + sed -i -e s:^prefix=:prefix=\"${STAGING_DIR_TARGET}/usr\": ${STAGING_BINDIR_CROSS}/icu-config } |