summaryrefslogtreecommitdiffstats
path: root/scripts/get-dep-lib.sh
diff options
context:
space:
mode:
authorGravatar Anton Lundin <glance@acc.umu.se>2018-06-18 22:32:02 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2018-06-22 02:47:58 -0700
commit207c752396e041f2c90d1a9fcb300272aeae74e6 (patch)
tree75df20e500f09854b915ad14e9da3f0275cd33cf /scripts/get-dep-lib.sh
parent1157ad3faf7e1631dcf8e037f50d6a5e350662f2 (diff)
downloadsubsurface-207c752396e041f2c90d1a9fcb300272aeae74e6.tar.gz
build-system: Use the correct library name, libftdi1
The library name is actually libftdi1 , not libftdi. Signed-off-by: Anton Lundin <glance@acc.umu.se>
Diffstat (limited to 'scripts/get-dep-lib.sh')
-rwxr-xr-xscripts/get-dep-lib.sh4
1 files 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)