1
0
Fork 0
This commit is contained in:
Frank Celler 2012-03-01 17:15:34 +01:00
parent 7c3969a42b
commit 63c281355a
2 changed files with 4 additions and 4 deletions

4
configure vendored
View File

@ -2603,9 +2603,9 @@ fi
# Check whether --enable-install-dbdir was given.
if test "${enable_install_dbdir+set}" = set; then :
enableval=$enable_install_dbdir; tr_RELATIVE="${enableval:-yes}"
enableval=$enable_install_dbdir; tr_DBDIR="${enableval:-yes}"
else
tr_RELATIVE=yes
tr_DBDIR=yes
fi

View File

@ -57,8 +57,8 @@ AM_CONDITIONAL(ENABLE_RELATIVE, test "x$tr_RELATIVE" = xyes)
AC_ARG_ENABLE(install-dbdir,
AS_HELP_STRING([--enable-install-dbdir], [install an empty database directory]),
[tr_RELATIVE="${enableval:-yes}"],
[tr_RELATIVE=yes]
[tr_DBDIR="${enableval:-yes}"],
[tr_DBDIR=yes]
)
AM_CONDITIONAL(ENABLE_INSTALL_DBDIR, test "x$tr_DBDIR" = xyes)