From 14e821d483017d86d9e12486c9d9a289f4e99b0e Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Tue, 27 Sep 2022 09:54:45 +0000 Subject: [PATCH] configure: Fix incorrect database path Reported-by: Jochen Sprickerhof Signed-off-by: Michael Tremer --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 9fad1b9..93ac7eb 100644 --- a/configure.ac +++ b/configure.ac @@ -122,7 +122,7 @@ CC_CHECK_FLAGS_APPEND([my_LDFLAGS], [LDFLAGS], [-fno-semantic-interposition]) AC_ARG_WITH([database-path], AS_HELP_STRING([--with-database-path], [The default database path]), - [], [with_database_path=/var/lib/${PACKAGE_NAME}/database.db] + [], [with_database_path=/var/lib/location/database.db] ) if test -z "${with_database_path}"; then -- 2.39.5