Commit 1cd181c9 authored by Nikias Bassen's avatar Nikias Bassen

build: Fix check for previously installed cython bindings

Due to the removal of pkg-config check for libxml2, $PKG_CONFIG was not
defined and a check for libplist's include dir via pkg-config failed.
By invoking PKG_PROG_PKG_CONFIG $PKG_CONFIG will be defined and the check
works again.
parent 29bed91a
......@@ -113,6 +113,7 @@ else
CYTHON=false
fi
if [test "x$CYTHON" != "xfalse"]; then
PKG_PROG_PKG_CONFIG
AC_MSG_CHECKING([for libplist Cython bindings])
CYTHON_PLIST_INCLUDE_DIR=$($PKG_CONFIG --variable=includedir libplist)/plist/cython
if [test ! -d "$CYTHON_PLIST_INCLUDE_DIR"]; then
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment