diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2012-03-01 12:29:06 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2012-03-01 12:29:06 +0200 |
commit | f59b5ad17eb77c3ff6f0e6e81162545e4b8d934b (patch) | |
tree | d473c6d7d8f3c4d5443341cc8220534cb8aa8e54 /build | |
parent | f8f44f0a8bae0667c6f5ff2315b220144785c6fb (diff) |
Use consistent default database name for SQLite
Diffstat (limited to 'build')
-rwxr-xr-x | build/sqlite/configure | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/build/sqlite/configure b/build/sqlite/configure index 71225ce..0111c94 100755 --- a/build/sqlite/configure +++ b/build/sqlite/configure @@ -10,12 +10,11 @@ $echo $echo "Please enter the SQLite database file name. Note that it WILL" -$echo "BE MODIFIED by the tests. If you do not specify a name, then a" -$echo "temporary on-disk database will be created. You can also specify" -$echo "':memory:' as a file name to use a temporary in-memory database." +$echo "BE MODIFIED by the tests. You can also specify ':memory:' as a" +$echo "file name to use a temporary in-memory database." $echo -db=`read_value` +db=`read_value "/tmp/odb-test.db"` opt=$dcf_root/db.options |