Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/cross
diff options
context:
space:
mode:
authorSteve Desmond <steve@vtsv.ca>2016-11-01 03:14:53 +0300
committerSteve Desmond <steve@vtsv.ca>2016-11-01 03:15:32 +0300
commit34dafae50a4a91fe862e72db6b697e20757e1800 (patch)
treeba78d7a2437c5fc579273d7109aa83a4348367cb /cross
parentca6552c4f34b0887bdcdf6a95e5216f4e8739112 (diff)
cross/build-rootfs.sh: install LLDB by default
Diffstat (limited to 'cross')
-rwxr-xr-xcross/build-rootfs.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/cross/build-rootfs.sh b/cross/build-rootfs.sh
index 17a8a42b8f..52378d6eaa 100755
--- a/cross/build-rootfs.sh
+++ b/cross/build-rootfs.sh
@@ -49,7 +49,6 @@ for i in "$@" ; do
arm)
__BuildArch=arm
__UbuntuArch=armhf
- __UbuntuPackages+=" ${__LLDB_Package:-}"
__MachineTriple=arm-linux-gnueabihf
;;
arm64)
@@ -81,6 +80,10 @@ for i in "$@" ; do
esac
done
+if [[ "$__BuildArch" == "arm" ]]; then
+ __UbuntuPackages+=" ${__LLDB_Package:-}"
+fi
+
__RootfsDir="$__CrossDir/rootfs/$__BuildArch"
if [[ -n "$ROOTFS_DIR" ]]; then