summaryrefslogtreecommitdiffstats
path: root/meta/packages/icu/icu-3.6.inc
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2010-08-04 10:13:25 +0100
committerRichard Purdie <rpurdie@linux.intel.com>2010-08-04 11:43:12 +0100
commit7b743641209492476329b88dcb213fbbd1780a9f (patch)
treeaf358ae5e607d684eab859b8aeec00d5927456b9 /meta/packages/icu/icu-3.6.inc
parent12f88767bc7686ddf3f33e9d731729e4ddc22075 (diff)
downloadpoky-7b743641209492476329b88dcb213fbbd1780a9f.tar.gz
icu: Make sure changes apply to Makefile and Makefile.in to fix build failure
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/packages/icu/icu-3.6.inc')
-rw-r--r--meta/packages/icu/icu-3.6.inc6
1 files changed, 2 insertions, 4 deletions
diff --git a/meta/packages/icu/icu-3.6.inc b/meta/packages/icu/icu-3.6.inc
index aa654f768e..1c611bdf36 100644
--- a/meta/packages/icu/icu-3.6.inc
+++ b/meta/packages/icu/icu-3.6.inc
@@ -24,15 +24,13 @@ do_configure() {
24 libtoolize --force 24 libtoolize --force
25 gnu-configize --force 25 gnu-configize --force
26 oe_runconf 26 oe_runconf
27 if [ "${BUILD_ARCH}" != "${HOST_ARCH}" ]; then 27 if [ "${PN}" != "icu-native" ]; then
28 # In the non-native case we need to make substitutions to use 28 # In the non-native case we need to make substitutions to use
29 # the native versions of the tools 29 # the native versions of the tools
30 for i in */Makefile */*.inc */*/Makefile */*/*.inc ; do 30 for i in */Makefile* */*.inc */*/Makefile* */*/*.inc */*/*.inc.in ; do
31 sed -i -e 's:$(INVOKE) $(BINDIR)/:$(INVOKE) :g' $i 31 sed -i -e 's:$(INVOKE) $(BINDIR)/:$(INVOKE) :g' $i
32 sed -i -e 's:$(BINDIR)/::g' $i 32 sed -i -e 's:$(BINDIR)/::g' $i
33 done 33 done
34 sed -i -e 's:$(BINDIR)/::g' extra/uconv/pkgdata.inc || true
35 sed -i -e 's:$(BINDIR)/::g' extra/uconv/pkgdata.inc.in || true
36 fi 34 fi
37} 35}
38 36