summaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorjunghyuk.park <junghyuk.park@samsung.com>2018-06-25 18:47:41 +0900
committerAlexander Soldatov/AI Ecosystem Lab /SRR/Staff Engineer/삼성전자 <soldatov.a@samsung.com>2019-02-14 20:24:48 +0300
commit2dd0d192c3b1b1d49e284d2ad065105bebf03aab (patch)
tree2f612d8715216b70c62dc25a928ecfab0db572a9 /build.sh
parent585a595aed37ab5059251709d4db07d46d119378 (diff)
downloadcoreclr-2dd0d192c3b1b1d49e284d2ad065105bebf03aab.tar.gz
coreclr-2dd0d192c3b1b1d49e284d2ad065105bebf03aab.tar.bz2
coreclr-2dd0d192c3b1b1d49e284d2ad065105bebf03aab.zip
[Tizen] Add support for GBS
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/build.sh b/build.sh
index 14452ad5ac..a2af24aeeb 100755
--- a/build.sh
+++ b/build.sh
@@ -75,6 +75,10 @@ initHostDistroRid()
if [[ $ID == "alpine" ]]; then
__HostDistroRid="linux-musl-$__HostArch"
fi
+ if [[ $ID == "tizen" ]]; then
+ __HostArch=armel
+ export __HostDistroRid="$ID.$VERSION_ID-$__HostArch"
+ fi
elif [ -e /etc/redhat-release ]; then
local redhatRelease=$(</etc/redhat-release)
if [[ $redhatRelease == "CentOS release 6."* || $redhatRelease == "Red Hat Enterprise Linux Server release 6."* ]]; then