Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Klipper3d/klipper.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorchestwood96 <adi.joachim12@gmail.com>2022-08-24 20:30:33 +0300
committerGitHub <noreply@github.com>2022-08-24 20:30:33 +0300
commitdb507f89b94f28c84c0544519cad4966694a197c (patch)
tree1a067a598191beee82e3604d11839ec74b77f1bf
parenta8883d83e377c5ab348099641498b2a621dd4c7b (diff)
scripts: Update install-debian.sh (#5704)
Add pkg-config reference because hid-flash needs it to build. Signed-off-by: Adrian Joachim <adi.joachim12@gmail.com>
-rwxr-xr-xscripts/install-debian.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/install-debian.sh b/scripts/install-debian.sh
index d1d910baf..9c2cd3b49 100755
--- a/scripts/install-debian.sh
+++ b/scripts/install-debian.sh
@@ -20,7 +20,7 @@ install_packages()
PKGLIST="${PKGLIST} avrdude gcc-avr binutils-avr avr-libc"
# ARM chip installation and building
PKGLIST="${PKGLIST} stm32flash libnewlib-arm-none-eabi"
- PKGLIST="${PKGLIST} gcc-arm-none-eabi binutils-arm-none-eabi libusb-1.0"
+ PKGLIST="${PKGLIST} gcc-arm-none-eabi binutils-arm-none-eabi libusb-1.0 pkg-config"
# Update system package info
report_status "Running apt-get update..."