summaryrefslogtreecommitdiff
path: root/src/mesa/Makefile
diff options
context:
space:
mode:
authorJakob Bornecrantz <jakob@tungstengraphics.com>2008-06-13 19:13:35 +0200
committerJakob Bornecrantz <jakob@tungstengraphics.com>2008-06-13 19:13:35 +0200
commit907b753ae62db8c2b266b18ed122eb00e1d66587 (patch)
tree49fba01885b4ed5cdaa740c148eca8f8a13ff6f2 /src/mesa/Makefile
parentd1397fd779ce63416bb59662a3c96f9c0a6ef7f5 (diff)
mesa: Fix libglapi.a build for dri
Diffstat (limited to 'src/mesa/Makefile')
-rw-r--r--src/mesa/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/Makefile b/src/mesa/Makefile
index 3ce30a1e25..2d0a6e0167 100644
--- a/src/mesa/Makefile
+++ b/src/mesa/Makefile
@@ -37,8 +37,8 @@ libmesa.a: $(MESA_OBJECTS) asm_subdirs
# Make archive of gl* API dispatcher functions only
$(GLAPI_LIB): $(GLAPI_OBJECTS) asm_subdirs
- if [ "${WINDOW_SYSTEM}" = "dri" ] ; then \
- $(TOP)/bin/mklib -o glapi -static ; \
+ @if [ "${WINDOW_SYSTEM}" = "dri" ] ; then \
+ touch libglapi.a ; \
else \
$(TOP)/bin/mklib -o glapi -static $(GLAPI_OBJECTS) ; \
fi