1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-18 20:19:11 +00:00

(svn r7961) [Configure] -Fix: "" in config params didn't survive --reconfig. They should now.

This commit is contained in:
truelight
2007-01-07 13:13:01 +00:00
parent c6da059f7b
commit 025d8dd224
2 changed files with 5 additions and 4 deletions

5
configure vendored
View File

@@ -25,8 +25,9 @@ if [ "$1" = "--reconfig" ]; then
exit 1
fi
# Make sure we don't lock config.cache
configure=`cat config.cache`
$configure
cat config.cache > cache.tmp
sh cache.tmp
rm -f cache.tmp
exit $?
fi