diff options
author | Memphiz <memphis@machzwo.de> | 2015-12-21 10:29:47 +0100 |
---|---|---|
committer | Memphiz <memphis@machzwo.de> | 2016-01-06 15:52:19 +0100 |
commit | b7c9ebb3df57933626f96867b61d84fd992a94a0 (patch) | |
tree | 2ceff63fdcb40ac97340b2fd4d44e55c5e00991e | |
parent | 10c55cdcdc7677c1d5ac68c58b52f8da4e0916cf (diff) |
[depends/sqlite3] - don't build the sqlite3 binary program
-rw-r--r-- | tools/depends/target/sqlite3/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/depends/target/sqlite3/Makefile b/tools/depends/target/sqlite3/Makefile index a9ca651f04..eeeab6b872 100644 --- a/tools/depends/target/sqlite3/Makefile +++ b/tools/depends/target/sqlite3/Makefile @@ -34,6 +34,9 @@ endif ifneq ($(OS),android) cd $(PLATFORM); patch -p1 < ../sqlite3.c.patch endif + # do not build the program sqlite3 + sed -ie "s|bin_PROGRAMS = sqlite3||" "$(PLATFORM)/Makefile.am"; + cd $(PLATFORM); $(AUTORECONF) -vif cd $(PLATFORM); $(CONFIGURE) $(LIBDYLIB): $(PLATFORM) |