diff options
author | monsta <[email protected]> | 2017-12-25 15:48:44 +0300 |
---|---|---|
committer | monsta <[email protected]> | 2017-12-25 15:48:44 +0300 |
commit | 1043962a24989d2cb7ecc65f5d5c30e5f0cfd6bc (patch) | |
tree | c10ba90dd4990aab043e2e99a3625838750be62f | |
parent | a60d6f5a7af479ee2552fa9e5e14c02aa42ad558 (diff) | |
download | engrampa-1043962a24989d2cb7ecc65f5d5c30e5f0cfd6bc.tar.bz2 engrampa-1043962a24989d2cb7ecc65f5d5c30e5f0cfd6bc.tar.xz |
build: use PKG_CONFIG to fix cross-build
patch by Helmut Grohne
https://bugs.debian.org/885107
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 79c1c6b..8863be8 100644 --- a/configure.ac +++ b/configure.ac @@ -107,7 +107,7 @@ AC_ARG_WITH(cajadir, [ac_with_cajadir=$withval], [ac_with_cajadir=""]) if test "${ac_with_cajadir}" = ""; then - ac_with_cajadir=`pkg-config --variable=extensiondir libcaja-extension` + ac_with_cajadir=`$PKG_CONFIG --variable=extensiondir libcaja-extension` fi AC_MSG_NOTICE([installing caja plugin in ${ac_with_cajadir}]) |