From: Gustavo Zacarias Date: Wed, 14 Oct 2015 21:41:57 +0000 (-0300) Subject: sqlcipher: specify tclConfig.sh directory X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b1dcb1c2468134ddf0e3cfc81c40874bf9fc561e;p=buildroot.git sqlcipher: specify tclConfig.sh directory Otherwise it will search around, and if the host has it then it breaks. Fixes: http://autobuild.buildroot.net/results/057/0572a9a1f69ee214efb10863f5d2852b25bf4f54/ Signed-off-by: Gustavo Zacarias Signed-off-by: Thomas Petazzoni --- diff --git a/package/sqlcipher/sqlcipher.mk b/package/sqlcipher/sqlcipher.mk index 9693eb947f..fadec2207f 100644 --- a/package/sqlcipher/sqlcipher.mk +++ b/package/sqlcipher/sqlcipher.mk @@ -14,7 +14,8 @@ SQLCIPHER_CONF_ENV = \ TCLSH_CMD=$(HOST_DIR)/usr/bin/tclsh$(TCL_VERSION_MAJOR) SQLCIPHER_CONF_OPTS = \ - --enable-threadsafe + --enable-threadsafe \ + --with-tcl=$(HOST_DIR)/usr/lib SQLCIPHER_CFLAGS += -DSQLITE_HAS_CODEC # Required according to the README SQLCIPHER_CONF_ENV += LIBS="-lcrypto -lz"