diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2009-12-19 20:48:48 -0500 |
---|---|---|
committer | Gaetan Nadon <memsize@videotron.ca> | 2009-12-19 20:48:48 -0500 |
commit | cf9e789281484747d5c5a61d74eee2e4a6b4947d (patch) | |
tree | 55be52b1db16d4a7c8bcf518e5f51d0f1ccb8c13 | |
parent | 66be761ba70c0e9e053f8c9e48168ebefeaf7a8d (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.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 0fc2670..9c22604 100644 --- a/configure.ac +++ b/configure.ac @@ -38,7 +38,7 @@ AC_PROG_INSTALL # Checks for pkg-config packages PKG_CHECK_MODULES(XVIDTUNE, xxf86vm xt xaw7 xmu x11) -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)]), |