diff options
author | Ian Romanick <[email protected]> | 2005-01-11 22:43:45 +0000 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2005-01-11 22:43:45 +0000 |
commit | d24e49f301db9612349ed09594e476a8dbc896a5 (patch) | |
tree | f45d856872442e0fc92f0d618ce38595091ef4ac /src/mesa/Makefile | |
parent | 5b28844dba15c0bcce4c5a9ee9f3ed82d6b90fdc (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/Makefile')
-rw-r--r-- | src/mesa/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/Makefile b/src/mesa/Makefile index 363e48c2d60..272ecd0a1cd 100644 --- a/src/mesa/Makefile +++ b/src/mesa/Makefile @@ -90,7 +90,7 @@ LIBGL_CORE_OBJECTS = \ # Make libGL from core object files libgl-core: $(LIBGL_CORE_OBJECTS) - @ CC=$(CC) CXX=$(CXX) $(TOP)/bin/mklib -o $(GL_LIB) \ + @ CC="$(CC)" CXX="$(CXX)" $(TOP)/bin/mklib -o $(GL_LIB) \ -major $(MESA_MAJOR) -minor $(MESA_MINOR) -patch $(MESA_TINY) \ -install $(LIB_DIR) $(MKLIB_OPTIONS) $(LIBGL_CORE_OBJECTS) $(GL_LIB_DEPS) |