aboutsummaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-03-01 12:29:06 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-03-01 12:29:06 +0200
commitf59b5ad17eb77c3ff6f0e6e81162545e4b8d934b (patch)
treed473c6d7d8f3c4d5443341cc8220534cb8aa8e54 /m4
parentf8f44f0a8bae0667c6f5ff2315b220144785c6fb (diff)
Use consistent default database name for SQLite
Diffstat (limited to 'm4')
-rw-r--r--m4/sqlite.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/m4/sqlite.m4 b/m4/sqlite.m4
index 5de424a..318a873 100644
--- a/m4/sqlite.m4
+++ b/m4/sqlite.m4
@@ -11,10 +11,10 @@ AC_DEFUN([SQLITE], [
AC_MSG_CHECKING([for sqlite database file])
AC_ARG_WITH(
[sqlite-db],
- [AC_HELP_STRING([--with-sqlite-db=FILE], [SQLite database file (odb_test.db by default). Note that all data in this database WILL BE LOST!])],
+ [AC_HELP_STRING([--with-sqlite-db=FILE], [SQLite database file (odb-test.db by default). Note that all data in this database WILL BE LOST!])],
[case $withval in
yes)
- sqlite_db=odb_test.db
+ sqlite_db=odb-test.db
sqlite_db_set=yes
;;
no)
@@ -25,7 +25,7 @@ AC_ARG_WITH(
sqlite_db_set=yes
;;
esac],
- [sqlite_db=odb_test.db
+ [sqlite_db=odb-test.db
sqlite_db_set=yes])
if test x$sqlite_db_set = xyes; then