summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Jelten <jj@sft.mx>2020-02-29 20:04:28 +0100
committerJonas Jelten <jj@sft.lol>2020-12-13 17:17:36 +0100
commit81af7d7d0e4c2c1d12377ff80876cdb67b5fa71c (patch)
treef4bf83327a79b685ec9240063999b9383a7cdfd0
parentbae85baf7208c4acddd9cf032059d1429f179e4a (diff)
downloadbubblewrap-81af7d7d0e4c2c1d12377ff80876cdb67b5fa71c.tar.gz
ensure pkg-config is found
bubblewrap uses pkg-config to find e.g. the selinux libraries. pkg-config itself is not looked for if the path for the bash completions is given by command line. this call makes sure that pkg-config is found either way. downstream bug: https://bugs.gentoo.org/674312
-rw-r--r--configure.ac1
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index c405b5f..fc067f0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -14,6 +14,7 @@ AC_SYS_LARGEFILE
AC_PROG_CC
AM_PROG_CC_C_O
+PKG_PROG_PKG_CONFIG([])
AC_CHECK_HEADERS([sys/capability.h], [], [AC_MSG_ERROR([*** POSIX caps headers not found])])