diff options
author | Jan Vorlicek <janvorli@microsoft.com> | 2017-07-28 00:18:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-28 00:18:31 +0200 |
commit | fc2f62a10d7216352d8c671006e8239fd487b421 (patch) | |
tree | 945cba487e9c582a88cb38fad0cfdcbbe0bbec5d /build.sh | |
parent | b832a6dd6a5a3647cb1a8ecde1386536ad60b2b3 (diff) | |
download | coreclr-fc2f62a10d7216352d8c671006e8239fd487b421.tar.gz coreclr-fc2f62a10d7216352d8c671006e8239fd487b421.tar.bz2 coreclr-fc2f62a10d7216352d8c671006e8239fd487b421.zip |
Fix Alpine build (#13052)
This change fixes CoreCLR build on Alpine Linux
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -390,10 +390,11 @@ isMSBuildOnNETCoreSupported() if [ "$__HostArch" == "x64" ]; then if [ "$__HostOS" == "Linux" ]; then __isMSBuildOnNETCoreSupported=1 - UNSUPPORTED_RIDS=("debian.9-x64" "ubuntu.17.04-x64") + # note: the RIDs below can use globbing patterns + UNSUPPORTED_RIDS=("debian.9-x64" "ubuntu.17.04-x64" "alpine.3.6.*-x64") for UNSUPPORTED_RID in "${UNSUPPORTED_RIDS[@]}" do - if [ "$__HostDistroRid" == "$UNSUPPORTED_RID" ]; then + if [[ $__HostDistroRid == $UNSUPPORTED_RID ]]; then __isMSBuildOnNETCoreSupported=0 break fi |