From: gyeongseok.seo Date: Fri, 20 Jul 2012 05:35:53 +0000 (+0900) Subject: [Title] Fixed CLI - build.ubuntu-32 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=154beaebd63a45a88f398edcc67e8a5bfc1d5a18;p=sdk%2Ftools%2Fcli.git [Title] Fixed CLI - build.ubuntu-32 [Type] Bugfix [Module] cli [Priority] Minor [Jira#] [Redmine#] [Problem] [Cause] [Solution] [TestCase] Change-Id: I4b2e3fe7c9c8c92811850169b37a9e1de7caa84a --- diff --git a/package/build.ubuntu-32 b/package/build.ubuntu-32 index ad062b4..1f11028 100755 --- a/package/build.ubuntu-32 +++ b/package/build.ubuntu-32 @@ -19,21 +19,21 @@ build() { echo $LIB mkdir -p $LIB - SRC=`find $ROOTDIR -name "org.eclipse.osgi_*"` + SRC=`find $ROOTDIR -name "org.eclipse.osgi_*" | head -1` cp $SRC $LIB - SRC=`find $ROOTDIR -name "org.tizen.common_*"` + SRC=`find $ROOTDIR -name "org.tizen.common_*" | head -1` cp $SRC $LIB jar -xvf $SRC lib - SRC=`find $ROOTDIR -name "org.tizen.web.common_*"` + SRC=`find $ROOTDIR -name "org.tizen.web.common_*" | head -1` cp $SRC $LIB - SRC=`find $ROOTDIR -name "org.tizen.web.launch_*"` + SRC=`find $ROOTDIR -name "org.tizen.web.launch_*" | head -1` cp $SRC $LIB jar -xvf $SRC lib - SRC=`find $ROOTDIR -name "org.tizen.web.sign_*"` + SRC=`find $ROOTDIR -name "org.tizen.web.sign_*" | head -1` cp $SRC $LIB jar -xvf $SRC lib