diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2009-12-19 17:35:07 -0500 |
---|---|---|
committer | Gaetan Nadon <memsize@videotron.ca> | 2009-12-19 17:35:07 -0500 |
commit | 1eabbd976f21f5922e4a2c125c6ed51ebf936763 (patch) | |
tree | e9f32c428702984a758e1b26f18a49450027154c | |
parent | c43cf46600ae8c93b85d4e3c956864691e55395e (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 5967392..797cc5e 100644 --- a/configure.ac +++ b/configure.ac @@ -18,7 +18,7 @@ fi AC_SUBST([XCURSORGEN]) PKG_CHECK_MODULES(ICONDEFS, xcursor) -pkg_cursordir=$(pkg-config --variable=icondir xcursor) +pkg_cursordir=`pkg-config --variable=icondir xcursor` AC_ARG_WITH(cursordir, AC_HELP_STRING([--with-cursordir=<pathname>], [specify directory for cursor files (default is autodetected)]), |