mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-08 17:29:09 +00:00
Make linux_install.sh work with openSUSE Leap 15.0 (#4218)
This commit is contained in:
parent
1e96346f28
commit
1fa6c1d818
1 changed files with 5 additions and 1 deletions
|
@ -96,9 +96,13 @@ elif grep ID /etc/os-release | grep -q gentoo; then
|
|||
fi
|
||||
|
||||
elif grep ID /etc/os-release | grep -qE "opensuse|tumbleweed"; then
|
||||
CROSS_AVR_GCC=cross-avr-gcc8
|
||||
if grep ID /etc/os-release | grep -q "15.0"; then
|
||||
CROSS_AVR_GCC=cross-avr-gcc7
|
||||
fi
|
||||
sudo zypper install \
|
||||
avr-libc \
|
||||
cross-avr-gcc8 \
|
||||
$CROSS_AVR_GCC \
|
||||
cross-avr-binutils \
|
||||
cross-arm-none-newlib-devel \
|
||||
cross-arm-binutils cross-arm-none-newlib-devel \
|
||||
|
|
Loading…
Reference in a new issue