diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2017-04-07 17:07:55 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-04-07 17:07:55 -0700 |
commit | 35e48a490bde96f8b8ae474afb4457fc5046d638 (patch) | |
tree | 857bdef4581229d0dc76f9b81b99f071e3e59d6f /packaging/ios | |
parent | c443576181a6836454176f8c30093db2c67e845d (diff) | |
download | subsurface-35e48a490bde96f8b8ae474afb4457fc5046d638.tar.gz |
QML UI: fix iOS build script
Syntax for one of the libdivecomputer configure options was wrong.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'packaging/ios')
-rw-r--r-- | packaging/ios/build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packaging/ios/build.sh b/packaging/ios/build.sh index 1515704e2..784e247aa 100644 --- a/packaging/ios/build.sh +++ b/packaging/ios/build.sh @@ -351,7 +351,7 @@ echo next building for $ARCH if [ ! -e $PKG_CONFIG_LIBDIR/libdivecomputer.pc ] ; then mkdir -p libdivecomputer-build-$ARCH pushd libdivecomputer-build-$ARCH - ../libdivecomputer/configure --host=${BUILDCHAIN} --prefix=${PREFIX} --enable-static --disable-shared --enable-examples=no --without-libusb --disable-hidapi + ../libdivecomputer/configure --host=${BUILDCHAIN} --prefix=${PREFIX} --enable-static --disable-shared --enable-examples=no --without-libusb --without-hidapi make make install popd |