diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2020-11-23 12:21:28 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2020-11-23 12:24:27 -0500 |
commit | 8ed01a1d1d4a110a869c2436f28f66eab827b418 (patch) | |
tree | 8b41de02618c79c2d64a3f63cb730b19a9256c70 /scripts/ci-install.sh | |
parent | d380fc002baa493de47df38aaaef0cd6e13324db (diff) | |
download | kutter-8ed01a1d1d4a110a869c2436f28f66eab827b418.tar.gz kutter-8ed01a1d1d4a110a869c2436f28f66eab827b418.tar.xz kutter-8ed01a1d1d4a110a869c2436f28f66eab827b418.zip |
scripts: No need to include python-virtualenv in package dependencies
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'scripts/ci-install.sh')
-rwxr-xr-x | scripts/ci-install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/ci-install.sh b/scripts/ci-install.sh index 05d6d6dc..ddcdb84a 100755 --- a/scripts/ci-install.sh +++ b/scripts/ci-install.sh @@ -16,7 +16,7 @@ mkdir -p ${BUILD_DIR} ${CACHE_DIR} ###################################################################### echo -e "\n\n=============== Install system dependencies\n\n" -PKGS="python-virtualenv virtualenv python-dev libffi-dev build-essential" +PKGS="virtualenv python-dev libffi-dev build-essential" PKGS="${PKGS} gcc-avr avr-libc" PKGS="${PKGS} libnewlib-arm-none-eabi gcc-arm-none-eabi binutils-arm-none-eabi" PKGS="${PKGS} pv libmpfr-dev libgmp-dev libmpc-dev texinfo bison flex" |