[Title] Fixed CLI - build.ubuntu-32
authorgyeongseok.seo <gyeongseok.seo@samsung.com>
Fri, 20 Jul 2012 05:35:53 +0000 (14:35 +0900)
committergyeongseok.seo <gyeongseok.seo@samsung.com>
Fri, 20 Jul 2012 05:35:53 +0000 (14:35 +0900)
[Type] Bugfix
[Module] cli
[Priority] Minor
[Jira#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

Change-Id: I4b2e3fe7c9c8c92811850169b37a9e1de7caa84a

package/build.ubuntu-32

index ad062b4..1f11028 100755 (executable)
@@ -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