summaryrefslogtreecommitdiffstats
path: root/configs/linux-llvm
diff options
context:
space:
mode:
authorStéphane Marchesin <[email protected]>2011-09-30 17:49:48 -0700
committerStéphane Marchesin <[email protected]>2011-10-04 11:19:48 -0700
commit3db309aecee57d7e0055a49a0e12a491a554347b (patch)
treeb0c2674ae23fe8ec4852b33892e053dcdd01a477 /configs/linux-llvm
parentcd9627777c3f1a55560e10912b88b1977c8bfe87 (diff)
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 <[email protected]> Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'configs/linux-llvm')
-rw-r--r--configs/linux-llvm2
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/linux-llvm b/configs/linux-llvm
index ef6c7bb105a..259d8ac7a2e 100644
--- a/configs/linux-llvm
+++ b/configs/linux-llvm
@@ -44,4 +44,4 @@ LD = g++
GL_LIB_DEPS = $(LLVM_LDFLAGS) $(LLVM_LIBS) $(EXTRA_LIB_PATH) -lX11 -lXext -lm -lpthread -lstdc++
# to allow the NV drivers to compile
-LIBDRM_CFLAGS = $(shell pkg-config --cflags libdrm)
+LIBDRM_CFLAGS = $(shell $(PKG_CONFIG) --cflags libdrm)