You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by da...@apache.org on 2014/02/06 18:28:28 UTC

[46/46] couch-collate commit: updated refs/heads/import-rcouch to 8ecdb84

fix path


Project: http://git-wip-us.apache.org/repos/asf/couchdb-couch-collate/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-couch-collate/commit/8ecdb840
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-couch-collate/tree/8ecdb840
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-couch-collate/diff/8ecdb840

Branch: refs/heads/import-rcouch
Commit: 8ecdb8407efd0e722f0fd84762dc92ed29c6abaa
Parents: b65a3ad
Author: benoitc <be...@apache.org>
Authored: Wed Jan 15 22:40:36 2014 +0100
Committer: Paul J. Davis <pa...@gmail.com>
Committed: Thu Feb 6 11:25:49 2014 -0600

----------------------------------------------------------------------
 build_icu.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-couch-collate/blob/8ecdb840/build_icu.sh
----------------------------------------------------------------------
diff --git a/build_icu.sh b/build_icu.sh
index e6ba834..167e73d 100755
--- a/build_icu.sh
+++ b/build_icu.sh
@@ -21,7 +21,7 @@ DISTDIR=$CORE_TOP/.dists
 ICU_VER=4.4.2
 ICU_DISTNAME=icu4c-4_4_2-src.tgz
 ICU_SITE=http://dl.refuge.io
-ICUDIR=$STATICLIBS/icu_src/icu
+ICUDIR=$STATICLIBS/icu
 
 
 [ "$MACHINE" ] || MACHINE=`(uname -m) 2>/dev/null` || MACHINE="unknown"
@@ -82,10 +82,10 @@ build_icu()
     rm -rf $STATICLIBS/icu*
 
     cd $STATICLIBS
-    $GUNZIP -c $DISTDIR/$ICU_DISTNAME | $TAR xf - -C $STATICLIBS/icu_src
+    $GUNZIP -c $DISTDIR/$ICU_DISTNAME | $TAR xf -
 
     # apply patches
-    cd $STATICLIBS/icu_src
+    cd $STATICLIBS/icu
     for P in $PATCHES/icu/*.patch; do \
         (patch -p0 -i $P || echo "skipping patch"); \
     done