mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-10 10:39:09 +00:00
Add missing Debian/Ubuntu dependency to the install script (#11348)
To successfully compile bootloadHID, we must have the libusb-config tool, which comes from the libusb-dev package. This package is available in both Ubuntu Groovy and Debian Buster Co-authored-by: Jonathan Paugh <jpaugh@gmx.com>
This commit is contained in:
parent
b4ea0a70be
commit
992380a5dd
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ _qmk_install() {
|
||||||
python3-pip \
|
python3-pip \
|
||||||
binutils-avr gcc-avr avr-libc \
|
binutils-avr gcc-avr avr-libc \
|
||||||
binutils-arm-none-eabi gcc-arm-none-eabi libnewlib-arm-none-eabi \
|
binutils-arm-none-eabi gcc-arm-none-eabi libnewlib-arm-none-eabi \
|
||||||
avrdude dfu-programmer dfu-util teensy-loader-cli
|
avrdude dfu-programmer dfu-util teensy-loader-cli libusb-dev
|
||||||
|
|
||||||
python3 -m pip install --user -r $QMK_FIRMWARE_DIR/requirements.txt
|
python3 -m pip install --user -r $QMK_FIRMWARE_DIR/requirements.txt
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue