diff options
author | Cory Fields <theuni-nospam-@xbmc.org> | 2013-04-02 18:08:03 -0400 |
---|---|---|
committer | Cory Fields <theuni-nospam-@xbmc.org> | 2013-04-02 18:08:03 -0400 |
commit | ba6c368aa89d5257e1662a375dbdaf1288118090 (patch) | |
tree | 86f1c1232c5b858461767c75ed6918f5dbf2a7ad | |
parent | c3c7fd3eff5e2b099c61468dae31aa024b42a573 (diff) |
depends: fix android build with NDK 8e
-rw-r--r-- | tools/depends/target/libssh/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/depends/target/libssh/Makefile b/tools/depends/target/libssh/Makefile index 62b6f74f2f..930fe6a667 100644 --- a/tools/depends/target/libssh/Makefile +++ b/tools/depends/target/libssh/Makefile @@ -23,7 +23,7 @@ $(PLATFORM): $(TARBALLS_LOCATION)/$(ARCHIVE) $(DEPS) cd $(PLATFORM); patch -p0 < ../md5.patch sed -ie "s|-fstack-protector|-fnostack-protector|" "$(PLATFORM)/cmake/Modules/DefineCompilerFlags.cmake" sed -ie "s|add_subdirectory(examples)||" "$(PLATFORM)/CMakeLists.txt" - cd $(PLATFORM)/build; $(CMAKE) -DWITH_STATIC_LIB=1 VERBOSE=1 .. + cd $(PLATFORM)/build; $(CMAKE) -DWITH_STATIC_LIB=1 -DTHREADS_PTHREAD_ARG=0 VERBOSE=1 .. $(LIBDYLIB): $(PLATFORM) make -j 1 -C $(PLATFORM)/build |