summaryrefslogtreecommitdiffstats
path: root/src/gallium/targets/xorg-nouveau
diff options
context:
space:
mode:
authorStéphane Marchesin <marcheu@chromium.org>2011-09-30 17:49:48 -0700
committerStéphane Marchesin <marcheu@chromium.org>2011-10-04 11:19:48 -0700
commit3db309aecee57d7e0055a49a0e12a491a554347b (patch)
treeb0c2674ae23fe8ec4852b33892e053dcdd01a477 /src/gallium/targets/xorg-nouveau
parentcd9627777c3f1a55560e10912b88b1977c8bfe87 (diff)
downloadexternal_mesa3d-3db309aecee57d7e0055a49a0e12a491a554347b.zip
external_mesa3d-3db309aecee57d7e0055a49a0e12a491a554347b.tar.gz
external_mesa3d-3db309aecee57d7e0055a49a0e12a491a554347b.tar.bz2
configure: replace pkg-config calls with $(PKG_CONFIG) in the makefiles.
Us poor souls who cross compile mesa want to be able to specify which pkg-config to pick, or at least just change one place. Reviewed-by: Brian Paul <brianp@vmware.com> Reviewed-by: Matt Turner <mattst88@gmail.com>
Diffstat (limited to 'src/gallium/targets/xorg-nouveau')
-rw-r--r--src/gallium/targets/xorg-nouveau/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/targets/xorg-nouveau/Makefile b/src/gallium/targets/xorg-nouveau/Makefile
index 755969c..cb4ae49 100644
--- a/src/gallium/targets/xorg-nouveau/Makefile
+++ b/src/gallium/targets/xorg-nouveau/Makefile
@@ -21,9 +21,9 @@ DRIVER_PIPES = \
$(TOP)/src/gallium/drivers/rbug/librbug.a
DRIVER_LINKS = \
- $(shell pkg-config --libs libdrm libdrm_nouveau)
+ $(shell $(PKG_CONFIG) --libs libdrm libdrm_nouveau)
DRIVER_INCLUDES = \
- $(shell pkg-config --cflags-only-I libdrm libdrm_nouveau xf86driproto)
+ $(shell $(PKG_CONFIG) --cflags-only-I libdrm libdrm_nouveau xf86driproto)
include ../Makefile.xorg