BUG 2416: Prefer sqlite over db backend

This commit is contained in:
Enno Rehling 2018-02-18 10:31:57 +01:00
parent 0465c5c29c
commit 7c3e0a5225
1 changed files with 2 additions and 2 deletions

View File

@ -1,8 +1,8 @@
#!/bin/sh #!/bin/sh
ERESSEA_DB=sqlite
if [ -e /usr/include/db.h ] ; then
ERESSEA_DB=db ERESSEA_DB=db
if [ -e /usr/include/sqlite3.h ] ; then
ERESSEA_DB=sqlite
fi fi
# Parse command line arguments # Parse command line arguments