Skip to content

Commit 18f304d

Browse files
committed
build: Improve error message when pkg-config is not installed
1 parent 16781e1 commit 18f304d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ AC_CONFIG_HEADERS([src/config/bitcoin-config.h])
1313
AC_CONFIG_AUX_DIR([build-aux])
1414
AC_CONFIG_MACRO_DIR([build-aux/m4])
1515

16-
m4_ifndef([PKG_PROG_PKG_CONFIG], [AC_MSG_ERROR([PKG_PROG_PKG_CONFIG macro not found. Please install pkg-config and re-run autogen.sh])])
16+
m4_ifndef([PKG_PROG_PKG_CONFIG], [m4_fatal([PKG_PROG_PKG_CONFIG macro not found. Please install pkg-config and re-run autogen.sh])])
1717
PKG_PROG_PKG_CONFIG
1818
if test "$PKG_CONFIG" = ""; then
1919
AC_MSG_ERROR([pkg-config not found])

0 commit comments

Comments
 (0)