diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2017-12-26 09:27:02 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-12-26 09:27:02 -0800 |
commit | f4c1cef73b32255c6b3f3bc4a7f5f6851194f8ff (patch) | |
tree | 236e341e9ef3b5f63c4037ed84d3acac1e0f4f1f | |
parent | 4346aaa3333eb4ba2bd6ee0dc1976c32545d3bfb (diff) | |
download | subsurface-f4c1cef73b32255c6b3f3bc4a7f5f6851194f8ff.tar.gz |
Android build: work around odd bug with cmake 3.10
For some reason it suddenly cannot figure out which build program
to use. This seems like a weird hack, but works.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rwxr-xr-x | packaging/android/build.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packaging/android/build.sh b/packaging/android/build.sh index 0eecebf47..e4aab2ccc 100755 --- a/packaging/android/build.sh +++ b/packaging/android/build.sh @@ -399,6 +399,7 @@ cmake $MOBILE_CMAKE \ -DANDROID_NATIVE_LIBSSL="$BUILDROOT/ndk-$ARCH/sysroot/usr/lib/libssl.so" \ -DANDROID_NATIVE_LIBCRYPT="$BUILDROOT/ndk-$ARCH/sysroot/usr/lib/libcrypto.so" \ -DBUILDTOOLS_REVISION="$ANDROID_BUILDTOOLS_REVISION" \ + -DCMAKE_MAKE_PROGRAM="make" \ "$SUBSURFACE_SOURCE" # set up the version number |