diff options
author | Ian Romanick <idr@us.ibm.com> | 2005-01-11 22:43:45 +0000 |
---|---|---|
committer | Ian Romanick <idr@us.ibm.com> | 2005-01-11 22:43:45 +0000 |
commit | d24e49f301db9612349ed09594e476a8dbc896a5 (patch) | |
tree | f45d856872442e0fc92f0d618ce38595091ef4ac /src/glw/Makefile | |
parent | 5b28844dba15c0bcce4c5a9ee9f3ed82d6b90fdc (diff) | |
download | external_mesa3d-d24e49f301db9612349ed09594e476a8dbc896a5.zip external_mesa3d-d24e49f301db9612349ed09594e476a8dbc896a5.tar.gz external_mesa3d-d24e49f301db9612349ed09594e476a8dbc896a5.tar.bz2 |
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/glw/Makefile')
-rw-r--r-- | src/glw/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glw/Makefile b/src/glw/Makefile index 36b70ee..b426d75 100644 --- a/src/glw/Makefile +++ b/src/glw/Makefile @@ -33,7 +33,7 @@ clean: # Make the library $(LIB_DIR)/$(GLW_LIB_NAME): $(OBJECTS) - CC=$(CC) CXX=$(CXX) $(TOP)/bin/mklib -o $(GLW_LIB) -major $(MAJOR) -minor $(MINOR) \ + CC="$(CC)" CXX="$(CXX)" $(TOP)/bin/mklib -o $(GLW_LIB) -major $(MAJOR) -minor $(MINOR) \ -patch $(TINY) $(MKLIB_OPTIONS) -install $(LIB_DIR) \ $(GLW_LIB_DEPS) $(OBJECTS) |