diff options
author | Stéphane Marchesin <[email protected]> | 2011-09-30 17:49:48 -0700 |
---|---|---|
committer | Stéphane Marchesin <[email protected]> | 2011-10-04 11:19:48 -0700 |
commit | 3db309aecee57d7e0055a49a0e12a491a554347b (patch) | |
tree | b0c2674ae23fe8ec4852b33892e053dcdd01a477 /configs/linux-egl | |
parent | cd9627777c3f1a55560e10912b88b1977c8bfe87 (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-egl')
-rw-r--r-- | configs/linux-egl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configs/linux-egl b/configs/linux-egl index 216bcbab321..2c8bfdd6f59 100644 --- a/configs/linux-egl +++ b/configs/linux-egl @@ -40,8 +40,8 @@ EXTRA_LIB_PATH=-L/usr/X11R6/lib MESA_MODULES = $(TOP)/src/mesa/libmesa.a -LIBDRM_CFLAGS = $(shell pkg-config --cflags libdrm) -LIBDRM_LIB = $(shell pkg-config --libs libdrm) +LIBDRM_CFLAGS = $(shell $(PKG_CONFIG) --cflags libdrm) +LIBDRM_LIB = $(shell $(PKG_CONFIG) --libs libdrm) DRI_LIB_DEPS = $(MESA_MODULES) $(EXTRA_LIB_PATH) -lm -lpthread -lexpat -ldl $(LIBDRM_LIB) GL_LIB_DEPS = $(EXTRA_LIB_PATH) -lX11 -lXext -lXxf86vm -lXdamage -lXfixes \ -lm -lpthread -ldl \ |