1
0
Fork 0

(svn r3866) -Fix: only add CXX if it is given

Word of warning: configure _does_ delete your Makefile.config!
release/0.5
truelight 2006-03-14 19:15:46 +00:00
parent be24777037
commit 23dd9a0ba9
1 changed files with 4 additions and 1 deletions

5
configure vendored
View File

@ -217,5 +217,8 @@ make upgradeconf $PARAM
# Makefile.config currently doesn't support custom CXX, so, we add the line # Makefile.config currently doesn't support custom CXX, so, we add the line
# ourself! # ourself!
echo "CXX=$TARGET_CXX" >> Makefile.config if ! test -z "$TARGET_CXX"
then
echo "CXX=$TARGET_CXX" >> Makefile.config
fi