From 207c752396e041f2c90d1a9fcb300272aeae74e6 Mon Sep 17 00:00:00 2001 From: Anton Lundin Date: Mon, 18 Jun 2018 22:32:02 +0200 Subject: [PATCH] build-system: Use the correct library name, libftdi1 The library name is actually libftdi1 , not libftdi. Signed-off-by: Anton Lundin --- scripts/get-dep-lib.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/get-dep-lib.sh b/scripts/get-dep-lib.sh index b6ab2e749..24116b452 100755 --- a/scripts/get-dep-lib.sh +++ b/scripts/get-dep-lib.sh @@ -119,7 +119,7 @@ case ${PLATFORM} in PACKAGES=("${COMMON_PACKAGES[@]}" libxslt) ;; android) - PACKAGES=("${COMMON_PACKAGES[@]}" libxslt sqlite libxml2 openssl libftdi libusb) + PACKAGES=("${COMMON_PACKAGES[@]}" libxslt sqlite libxml2 openssl libftdi1 libusb) ;; single) PACKAGES=("$3") @@ -177,7 +177,7 @@ for package in "${PACKAGES[@]}" ; do libzip) curl_download_library libzip https://subsurface-divelog.org/downloads/ libzip-${CURRENT_LIBZIP}.tar.xz ;; - libftdi) + libftdi1) curl_download_library libftdi1 https://www.intra2net.com/en/developer/libftdi/download/ libftdi1-${CURRENT_LIBFTDI}.tar.bz2 ;; sqlite)