1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-23 22:49:09 +00:00

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

Word of warning: configure _does_ delete your Makefile.config!
This commit is contained in:
truelight
2006-03-14 19:15:46 +00:00
parent be24777037
commit 23dd9a0ba9

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
# ourself!
echo "CXX=$TARGET_CXX" >> Makefile.config
if ! test -z "$TARGET_CXX"
then
echo "CXX=$TARGET_CXX" >> Makefile.config
fi