Correct AC_PACKAGE_NAME brackets in BDB62 m4 script

83b0c7ff5e
This commit is contained in:
lateminer
2018-12-02 01:25:43 +03:00
parent e97b77d123
commit 6af332f8f1

View File

@@ -42,7 +42,7 @@ AC_DEFUN([BITCOIN_FIND_BDB62],[
done
if test "x$bdbpath" = "xX"; then
AC_MSG_RESULT([no])
AC_MSG_ERROR([libdb_cxx headers missing,]AC_PACKAGE_NAME[ requires this library for wallet functionality (--disable-wallet to disable wallet functionality)])
AC_MSG_ERROR([libdb_cxx headers missing,[AC_PACKAGE_NAME] requires this library for wallet functionality (--disable-wallet to disable wallet functionality)])
elif test "x$bdb62path" = "xX"; then
BITCOIN_SUBDIR_TO_INCLUDE(BDB_CPPFLAGS,[${bdbpath}],db_cxx)
AC_ARG_WITH([incompatible-bdb],[AS_HELP_STRING([--with-incompatible-bdb], [allow using a bdb version other than 6.2])],[
@@ -64,7 +64,7 @@ AC_DEFUN([BITCOIN_FIND_BDB62],[
])
done
if test "x$BDB_LIBS" = "x"; then
AC_MSG_ERROR([libdb_cxx missing, ]AC_PACKAGE_NAME[ requires this library for wallet functionality (--disable-wallet to disable wallet functionality)])
AC_MSG_ERROR([libdb_cxx missing, [AC_PACKAGE_NAME] requires this library for wallet functionality (--disable-wallet to disable wallet functionality)])
fi
AC_SUBST(BDB_LIBS)
])