summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenny Hung <kennysubs+github@outlook.com>2019-07-05 12:52:54 +0100
committerDrashna Jaelre <drashna@live.com>2019-07-05 04:52:54 -0700
commit78b9922fc427aabe5e0b2f3376982d43be878935 (patch)
tree4b4d4ccbcd5292d42783672c9dfb9547fbfddc12
parent9eb48deb44e72036699ffa83a69ba66fd7a8f8c0 (diff)
Fix linux_install.sh script for OpenSuse v 15.1 (#6251)0.6.406
-rwxr-xr-xutil/linux_install.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/linux_install.sh b/util/linux_install.sh
index efb2ee7746..a1ee792052 100755
--- a/util/linux_install.sh
+++ b/util/linux_install.sh
@@ -118,7 +118,7 @@ elif grep ID /etc/os-release | grep -q sabayon; then
elif grep ID /etc/os-release | grep -qE "opensuse|tumbleweed"; then
CROSS_AVR_GCC=cross-avr-gcc8
CROSS_ARM_GCC=cross-arm-none-gcc8
- if grep ID /etc/os-release | grep -q "15.0"; then
+ if grep ID /etc/os-release | grep -q "15."; then
CROSS_AVR_GCC=cross-avr-gcc7
CROSS_ARM_GCC=cross-arm-none-gcc7
fi