From 46a87235660d03a3d1c949d90fb957b22c73d525 Mon Sep 17 00:00:00 2001 From: Eric Callahan Date: Tue, 21 Sep 2021 14:02:09 -0400 Subject: [PATCH] scripts: add libcurl4-openssl-dev dependency This dependency is also require to build the pycurl wheel. Signed-off-by: Eric Callahan --- scripts/install-moonraker.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/install-moonraker.sh b/scripts/install-moonraker.sh index 5f7561f..38e8d39 100755 --- a/scripts/install-moonraker.sh +++ b/scripts/install-moonraker.sh @@ -37,7 +37,8 @@ cleanup_legacy() { install_packages() { PKGLIST="python3-virtualenv python3-dev nginx libopenjp2-7 python3-libgpiod" - PKGLIST="${PKGLIST} curl libssl-dev liblmdb0 libsodium-dev zlib1g-dev" + PKGLIST="${PKGLIST} curl libcurl4-openssl-dev libssl-dev liblmdb0" + PKGLIST="${PKGLIST} libsodium-dev zlib1g-dev" # Update system package info report_status "Running apt-get update..."