diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-06-09 19:12:52 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-06-09 19:12:52 -0400 |
commit | 5f640699b7cbb8c4f1a9aec77743622daebb8aab (patch) | |
tree | 68bc9af104cdf119d4b8313128ae3d337be7fa6e /scripts | |
parent | 4367a985e2f8a9153649352c98182ee86366b8fc (diff) | |
download | kutter-5f640699b7cbb8c4f1a9aec77743622daebb8aab.tar.gz kutter-5f640699b7cbb8c4f1a9aec77743622daebb8aab.tar.xz kutter-5f640699b7cbb8c4f1a9aec77743622daebb8aab.zip |
scripts: Add python-dev dependency to install-octopi.sh
The python-dev package is usually already installed, but there's no
harm in stating it explicitly. Reported by @yschroeder.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/install-octopi.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/install-octopi.sh b/scripts/install-octopi.sh index 85a141fb..8921ac72 100755 --- a/scripts/install-octopi.sh +++ b/scripts/install-octopi.sh @@ -8,7 +8,7 @@ PYTHONDIR="${HOME}/klippy-env" install_packages() { # Packages for python cffi - PKGLIST="python-virtualenv libffi-dev" + PKGLIST="python-virtualenv python-dev libffi-dev" # kconfig requirements PKGLIST="${PKGLIST} libncurses-dev" # hub-ctrl |