From 43bb861707b33e527bba3a77381d10eebcf086fa Mon Sep 17 00:00:00 2001 From: Alberto Gonzalez Iniesta Date: Tue, 19 Oct 2010 19:07:24 +0200 Subject: Fixed missing quotes in ./configure Signed-off-by: Alberto Gonzalez Iniesta Signed-off-by: David Sommerseth --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index efa5be1..5197a65 100755 --- a/configure +++ b/configure @@ -228,7 +228,7 @@ if [ -z "${DB}" ]; then fi # Set default parameters for the SQLite3 database -if [ ${DB} = "SQLite3" ]; then +if [ "${DB}" = "SQLite3" ]; then PARAMS="${PARAMS} -DSQLITE3PREFIX:STIRNG=${SQLITE3PREFIX}" fi -- cgit