summaryrefslogtreecommitdiff
path: root/src/glut/ggi
diff options
context:
space:
mode:
authorIan Romanick <idr@us.ibm.com>2005-01-11 22:43:45 +0000
committerJosé Fonseca <jfonseca@vmware.com>2011-07-11 20:03:33 +0100
commit439a52a1e5bfbe4ee17e6fdb363323760e4d1fe0 (patch)
tree80f32ae0d64bc168834196bd8ba7c60cf61ea505 /src/glut/ggi
parent7078e3fdc2372e7b14dd4e0306ad12b2ee97af11 (diff)
downloadglut-439a52a1e5bfbe4ee17e6fdb363323760e4d1fe0.tar.gz
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/glut/ggi')
-rw-r--r--src/glut/ggi/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glut/ggi/Makefile b/src/glut/ggi/Makefile
index ebd8dc6..a5ffcec 100644
--- a/src/glut/ggi/Makefile
+++ b/src/glut/ggi/Makefile
@@ -32,7 +32,7 @@ default: $(LIB_DIR)/$(GLUT_LIB_NAME)
# Make the library
$(LIB_DIR)/$(GLUT_LIB_NAME): depend $(OBJECTS)
- CC=$(CC) CXX=$(CXX) $(TOP)/bin/mklib -o $(GLUT_LIB) \
+ CC="$(CC)" CXX="$(CXX)" $(TOP)/bin/mklib -o $(GLUT_LIB) \
-major $(GLUT_MAJOR) -minor $(GLUT_MINOR) \
-patch $(GLUT_TINY) $(MKLIB_OPTIONS) -install $(LIB_DIR) \
$(GLUT_LIB_DEPS) $(OBJECTS)