diff options
author | Kevin Tian <kevin.tian@intel.com> | 2010-06-11 11:57:22 +0800 |
---|---|---|
committer | Kevin Tian <kevin.tian@intel.com> | 2010-06-11 11:57:22 +0800 |
commit | c32daf455403b03b0009825ca49a7f44b4c03fe1 (patch) | |
tree | 083a5e60baa9ca1101b4199f845bfa13bb5674ad | |
parent | fd4924087cf596d5c8d1270187050abf30c7cb69 (diff) | |
download | openembedded-core-c32daf455403b03b0009825ca49a7f44b4c03fe1.tar.gz openembedded-core-c32daf455403b03b0009825ca49a7f44b4c03fe1.tar.bz2 openembedded-core-c32daf455403b03b0009825ca49a7f44b4c03fe1.zip |
icu-native: LD_LIBRARY_PATH is required
Back to commit ea45876d7ba3d4d2b132fd38a2c40834a2385f34, LD_LIBRARY_PATH
is disable for cross-build, however it's required for native version. So
force noldlibpath.patch for non-native case only
Signed-off-by Kevin Tian <kevin.tian@intel.com>
-rw-r--r-- | meta/packages/icu/icu-3.6.inc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/meta/packages/icu/icu-3.6.inc b/meta/packages/icu/icu-3.6.inc index e99fc4a202..9761908bd0 100644 --- a/meta/packages/icu/icu-3.6.inc +++ b/meta/packages/icu/icu-3.6.inc @@ -1,8 +1,11 @@ -SRC_URI = "ftp://ftp.software.ibm.com/software/globalization/icu/3.6/icu4c-3_6-src.tgz \ +BASE_SRC_URI = "ftp://ftp.software.ibm.com/software/globalization/icu/3.6/icu4c-3_6-src.tgz \ file://gccfix.patch;patch=1 \ - file://noldlibpath.patch;patch=1 \ file://use-g++-for-linking.patch;patch=1" +SRC_URI = "${BASE_SRC_URI} \ + file://noldlibpath.patch;patch=1" +SRC_URI_virtclass-native = "${BASE_SRC_URI}" + LICENSE = "ICU" DEPENDS = "icu-native" DEPENDS_virtclass-native = "" |