diff options
author | monsta <[email protected]> | 2017-12-25 15:48:44 +0300 |
---|---|---|
committer | monsta <[email protected]> | 2017-12-25 16:01:38 +0300 |
commit | 6045a6d7ebeaf6d89cf32b16080b1409f063fb50 (patch) | |
tree | 643c07563e0d591cd76cd54295314579b29ec165 | |
parent | 26a96d66550ffe3e634ae6655519da424c737c53 (diff) | |
download | engrampa-6045a6d7ebeaf6d89cf32b16080b1409f063fb50.tar.bz2 engrampa-6045a6d7ebeaf6d89cf32b16080b1409f063fb50.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 f1a9893..204b998 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}]) |