diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2009-12-15 21:46:48 -0500 |
---|---|---|
committer | Gaetan Nadon <memsize@videotron.ca> | 2009-12-28 15:17:11 -0500 |
commit | 25a6c8dfae240143309b14cc32ebac6008c3a378 (patch) | |
tree | 7d21122e193a3596a90bcdc5a25859eef8259f24 | |
parent | 2c142e421e859406b5aff16ba18624150269fc06 (diff) |
configure.ac: use backticks rather than $() for cmd subs
Use "$PKG_CONFIG" rather than hard coded "pkg-config"
Acked-by: Dan Nicholson <dbn.lists@gmail.com>
Acked-by: Daniel Stone <daniel@fooishbar.org>
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 9aee5a34..4877a1fe 100644 --- a/configure.ac +++ b/configure.ac @@ -97,7 +97,7 @@ PKG_CHECK_MODULES(XEXT, [xextproto >= 7.0.99.1], HAVE_XEXTPROTO_71="no") AM_CONDITIONAL(HAVE_XEXTPROTO_71, [ test "$HAVE_XEXTPROTO_71" = "yes" ]) -sdkdir=$(pkg-config --variable=sdkdir xorg-server) +sdkdir=`$PKG_CONFIG --variable=sdkdir xorg-server` save_CFLAGS="$CFLAGS" CFLAGS="$XORG_CFLAGS $DRI_CFLAGS $DRM_CFLAGS" |