summaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorchunseoklee <chunseoklee@naver.com>2016-04-28 22:27:07 +0900
committerJan Kotas <jkotas@microsoft.com>2016-04-28 06:27:07 -0700
commitccbabf30d4d9bde05e9a843713b29542279cd92a (patch)
treea6106cc93ea858e02dc3e58c01be0501a1f950bb /build.sh
parent50d2b7c240cc2c6cd8419f13c33236f2d2e3e85c (diff)
downloadcoreclr-ccbabf30d4d9bde05e9a843713b29542279cd92a.tar.gz
coreclr-ccbabf30d4d9bde05e9a843713b29542279cd92a.tar.bz2
coreclr-ccbabf30d4d9bde05e9a843713b29542279cd92a.zip
Linux Mint support for mscorlib.dll (#4610)
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/build.sh b/build.sh
index f374886f07..62ff53e4bb 100755
--- a/build.sh
+++ b/build.sh
@@ -217,6 +217,9 @@ isMSBuildOnNETCoreSupported()
__OSVersion=$(lsb_release -rs)
if [ "$__OSVersion" == "14.04" ]; then
__isMSBuildOnNETCoreSupported=1
+ elif [ "$(cat /etc/*-release | grep -cim1 14.04)" -eq 1 ]; then
+ # Linux Mint based on Ubuntu 14.04
+ __isMSBuildOnNETCoreSupported=1
fi
elif [ "$__DistroName" == "rhel" ]; then
__isMSBuildOnNETCoreSupported=1