summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaetan Nadon <memsize@videotron.ca>2009-12-19 20:48:48 -0500
committerGaetan Nadon <memsize@videotron.ca>2009-12-19 20:48:48 -0500
commit9205c610f211837e9a63d08d1fbd8c687b7d0b8a (patch)
treef8a954b21e82b0da8cba6405d744a861183200cd
parentf6398f9cc100f63bf694be9c6157e1b774a75c2b (diff)
configure.ac: use backticks rather than $() for cmd subs
Use "$PKG_CONFIG" rather than hard coded "pkg-config" Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index be6e09d..dc8cf8a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -44,7 +44,7 @@ AC_SUBST(XFONTSEL_CFLAGS)
AC_SUBST(XFONTSEL_LIBS)
PKG_CHECK_MODULES(APPDEFS, xt)
-xt_appdefaultdir=$(pkg-config --variable=appdefaultdir xt)
+xt_appdefaultdir=`$PKG_CONFIG --variable=appdefaultdir xt`
AC_ARG_WITH(appdefaultdir,
AC_HELP_STRING([--with-appdefaultdir=<pathname>],
[specify directory for app-defaults files (default is autodetected)]),