diff options
author | Anton Lundin <glance@acc.umu.se> | 2018-06-18 22:32:02 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-06-22 02:47:58 -0700 |
commit | 207c752396e041f2c90d1a9fcb300272aeae74e6 (patch) | |
tree | 75df20e500f09854b915ad14e9da3f0275cd33cf /scripts/get-dep-lib.sh | |
parent | 1157ad3faf7e1631dcf8e037f50d6a5e350662f2 (diff) | |
download | subsurface-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-x | scripts/get-dep-lib.sh | 4 |
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) |