From ba0d5e4dcfdc93b92fc084f96d4e8528100194d7 Mon Sep 17 00:00:00 2001 From: Badlop Date: Tue, 8 Feb 2022 15:33:00 +0100 Subject: [PATCH] Nowadays NEW_SQL_SCHEMA is only used to determine the default sql schema --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index e203eab6a..864a042f1 100644 --- a/configure.ac +++ b/configure.ac @@ -157,7 +157,7 @@ AC_ARG_ENABLE(mysql, esac],[if test "x$mysql" = "x"; then mysql=false; fi]) AC_ARG_ENABLE(new_sql_schema, -[AS_HELP_STRING([--enable-new-sql-schema],[use new SQL schema (default: no)])], +[AS_HELP_STRING([--enable-new-sql-schema],[use new SQL schema by default (default: no)])], [case "${enableval}" in yes) new_sql_schema=true ;; no) new_sql_schema=false ;;