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

Word of warning: configure _does_ delete your Makefile.config!
pull/155/head
truelight 19 years ago
parent 88b6b44566
commit 382104ce89

5
configure vendored

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

Loading…
Cancel
Save