summaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorOmair Majid <omajid@redhat.com>2017-01-23 13:08:08 -0500
committerOmair Majid <omajid@redhat.com>2017-01-23 14:32:23 -0500
commit22bf284c53f7f82db40c46e851a3ebafa414c9f1 (patch)
tree02484057b7c5856b2b6e6bc64a4874cc30944a5f /build.sh
parentb1f5c6acca00ca471818237d698baca317851b1f (diff)
downloadcoreclr-22bf284c53f7f82db40c46e851a3ebafa414c9f1.tar.gz
coreclr-22bf284c53f7f82db40c46e851a3ebafa414c9f1.tar.bz2
coreclr-22bf284c53f7f82db40c46e851a3ebafa414c9f1.zip
Treat RHEL 7.x versions as RHEL 7 when building
All RHEL 7.x versions are backwards compatible with each other. A .NET Core build from 7.2 works fin on RHEL 7.3, for example. Treat this as a general case and handle all 7.x versions the same. This change only affects whether packages are built or not.
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index 868c824fb9..4302407292 100755
--- a/build.sh
+++ b/build.sh
@@ -322,7 +322,7 @@ isMSBuildOnNETCoreSupported()
"opensuse.42.1-x64")
__isMSBuildOnNETCoreSupported=1
;;
- "rhel.7.2-x64")
+ "rhel.7"*"-x64")
__isMSBuildOnNETCoreSupported=1
;;
"ubuntu.14.04-x64")