diff options
author | Ian Romanick <[email protected]> | 2004-06-25 22:51:39 +0000 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2004-06-25 22:51:39 +0000 |
commit | 9eecb03226a534e0fe59973133371b72e7c0d63d (patch) | |
tree | e1cff8862d5631117638abcc8f40750e2367c740 /src/glu | |
parent | 74b380b2ec16b387628b4e01f25eca7baf634048 (diff) |
Make sure mklib sees the definition of CC and CXX. Make mklib respect
the definitions of CC and CXX on Linux. This fixed build issues with
sunos5-gcc and build issues on GCC 2.x Linux when CC and CXX are set
to a GCC 3.x compiler.
Diffstat (limited to 'src/glu')
-rw-r--r-- | src/glu/sgi/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glu/sgi/Makefile b/src/glu/sgi/Makefile index 940c14901aa..f1d0d70ebf8 100644 --- a/src/glu/sgi/Makefile +++ b/src/glu/sgi/Makefile @@ -128,7 +128,7 @@ default: $(LIB_DIR)/$(GLU_LIB_NAME) # Make the library: $(LIB_DIR)/$(GLU_LIB_NAME): $(OBJECTS) - $(TOP)/bin/mklib -o $(GLU_LIB) -major $(GLU_MAJOR) \ + CC=$(CC) CXX=$(CXX) $(TOP)/bin/mklib -o $(GLU_LIB) -major $(GLU_MAJOR) \ -minor $(GLU_MINOR) -patch $(GLU_TINY) \ -cplusplus $(MKLIB_OPTIONS) -install $(LIB_DIR) \ $(GLU_LIB_DEPS) $(OBJECTS) |