summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorAlberto Gonzalez Iniesta <agi@inittab.org>2010-10-19 19:07:24 +0200
committerDavid Sommerseth <dazo@users.sourceforge.net>2010-10-19 19:07:24 +0200
commit43bb861707b33e527bba3a77381d10eebcf086fa (patch)
treedaa5a70d272b50f95046c67a9bf7dacc8932f966 /configure
parentf2205fdccacf74ab40381a545f605160dcacaf36 (diff)
downloadeurephia-43bb861707b33e527bba3a77381d10eebcf086fa.tar.gz
eurephia-43bb861707b33e527bba3a77381d10eebcf086fa.tar.xz
eurephia-43bb861707b33e527bba3a77381d10eebcf086fa.zip
Fixed missing quotes in ./configure
Signed-off-by: Alberto Gonzalez Iniesta <agi@inittab.org> Signed-off-by: David Sommerseth <dazo@users.sourceforge.net>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
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