Fix build-rootfs.sh to include lldb package (#9608)
authorHyung-Kyu Choi <hqueue@users.noreply.github.com>
Wed, 15 Feb 2017 12:07:08 +0000 (21:07 +0900)
committerJan Vorlicek <janvorli@microsoft.com>
Wed, 15 Feb 2017 12:07:08 +0000 (13:07 +0100)
lldb package is missing for architectures other than arm and armel.

Signed-off-by: Hyung-Kyu Choi <hk0110.choi@samsung.com>
cross/build-rootfs.sh

index 86c505d..6b4d184 100755 (executable)
@@ -108,14 +108,10 @@ for i in "$@" ; do
     esac
 done
 
-if [[ "$__BuildArch" == "arm" ]]; then
-    __UbuntuPackages+=" ${__LLDB_Package:-}"
-fi
-
 if [ "$__BuildArch" == "armel" ]; then
     __LLDB_Package="lldb-3.5-dev"
-    __UbuntuPackages+=" ${__LLDB_Package:-}"
 fi
+__UbuntuPackages+=" ${__LLDB_Package:-}"
 
 __RootfsDir="$__CrossDir/rootfs/$__BuildArch"