summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/x11/Makefile
diff options
context:
space:
mode:
authorIan Romanick <idr@us.ibm.com>2005-01-11 22:43:45 +0000
committerIan Romanick <idr@us.ibm.com>2005-01-11 22:43:45 +0000
commitd24e49f301db9612349ed09594e476a8dbc896a5 (patch)
treef45d856872442e0fc92f0d618ce38595091ef4ac /src/mesa/drivers/dri/x11/Makefile
parent5b28844dba15c0bcce4c5a9ee9f3ed82d6b90fdc (diff)
Put quotes around the CC and CXX variables passed to mklib. This make
them work with multi-work compiler names (e.g., "ccache gcc").
Diffstat (limited to 'src/mesa/drivers/dri/x11/Makefile')
-rw-r--r--src/mesa/drivers/dri/x11/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/x11/Makefile b/src/mesa/drivers/dri/x11/Makefile
index 3b0b2e2848..76c157b095 100644
--- a/src/mesa/drivers/dri/x11/Makefile
+++ b/src/mesa/drivers/dri/x11/Makefile
@@ -67,7 +67,7 @@ default: depend $(LIB_DIR)/$(LIBNAME)
$(LIB_DIR)/$(LIBNAME): $(OBJECTS) $(MESA_MODULES) $(WINOBJ) Makefile
- CC=$(CC) CXX=$(CXX) $(TOP)/bin/mklib -o $(LIBNAME) -noprefix -install $(LIB_DIR) \
+ CC="$(CC)" CXX="$(CXX)" $(TOP)/bin/mklib -o $(LIBNAME) -noprefix -install $(LIB_DIR) \
$(OBJECTS) $(WINLIB) $(LIB_DEPS) $(WINOBJ) $(MESA_MODULES)