diff options
| author | 2019-07-05 12:52:54 +0100 | |
|---|---|---|
| committer | 2019-07-05 04:52:54 -0700 | |
| commit | 78b9922fc427aabe5e0b2f3376982d43be878935 (patch) | |
| tree | 4b4d4ccbcd5292d42783672c9dfb9547fbfddc12 /util | |
| parent | 9eb48deb44e72036699ffa83a69ba66fd7a8f8c0 (diff) | |
| download | qmk_firmware-78b9922fc427aabe5e0b2f3376982d43be878935.tar.gz | |
Fix linux_install.sh script for OpenSuse v 15.1 (#6251)
Diffstat (limited to 'util')
| -rwxr-xr-x | util/linux_install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/linux_install.sh b/util/linux_install.sh index efb2ee774..a1ee79205 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 |