From 686d691fa93d2609eff26992cc3954a6b901f7ec Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Tue, 17 May 2022 19:39:22 +1000 Subject: [PATCH] Remove extraneous '$' in AS_VAR_COPY([MAXMINDDB_PREFIX], [with_maxminddb]) --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 1e036c5a02..8dc5aca4c4 100644 --- a/configure.ac +++ b/configure.ac @@ -491,7 +491,7 @@ AS_IF([test "$enable_geoip" = "yes"], [AC_DEFINE([HAVE_GEOIP2], [1], [Build with GeoIP2 support]) MAXMINDDB_LIBS="$MAXMINDDB_LIBS $ac_cv_search_MMDB_open" AC_MSG_NOTICE([GeoIP2 default database path set to $with_maxminddb/share/GeoIP]) - AS_VAR_COPY([MAXMINDDB_PREFIX], [$with_maxminddb]) + AS_VAR_COPY([MAXMINDDB_PREFIX], [with_maxminddb]) ], [AC_MSG_ERROR([GeoIP2 requested, but libmaxminddb not found])]) AX_RESTORE_FLAGS([maxminddb])