diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-12-20 08:26:30 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-12-20 08:26:30 -0800 |
commit | 55b6eaae0b176f95b0cff7365091f10ac113edd8 (patch) | |
tree | c49ba92b613a30298247ca84b6f782eb2eb2bff6 | |
parent | 2316390c1f3d2d89798c599b42bf99873e4b7651 (diff) | |
download | subsurface-55b6eaae0b176f95b0cff7365091f10ac113edd8.tar.gz |
iOS build: fix typo in CFLAGS argument
This way the gethostuuid workaround actually works. It still doesn't compile,
though.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-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 1e18fef81..99b2798f7 100644 --- a/packaging/ios/build.sh +++ b/packaging/ios/build.sh @@ -55,7 +55,7 @@ fi if [ ! -e $PKG_CONFIG_LIBDIR/sqlite3.pc ] ; then mkdir -p sqlite-build-$platform pushd sqlite-build-$platform - CFLAGS="${CFLAGS} -DDSQLITE_ENABLE_LOCKING_STYLE=0" + CFLAGS="${CFLAGS} -DSQLITE_ENABLE_LOCKING_STYLE=0" ../sqlite-autoconf-${SQLITE_VERSION}/configure \ --prefix="$PREFIX" \ |