Changeset - r5560:3a25b20628de
[Not reviewed]
master
0 2 0
truelight - 18 years ago 2007-01-07 13:13:01
truelight@openttd.org
(svn r7961) [Configure] -Fix: "" in config params didn't survive --reconfig. They should now.
2 files changed with 5 insertions and 4 deletions:
0 comments (0 inline, 0 general)
config.lib
Show inline comments
 
@@ -257,10 +257,10 @@ save_params() {
 

	
 
	configure="$0 --ignore-extra-parameters"
 
	for p in $save_params_array; do
 
		eval "v=\$$p"
 
		eval "v=\"\$$p\""
 
		p=`echo "$p" | sed 's/_/-/g;s/\n//g;'`
 
		# Only save those params that aren't empty
 
		configure="$configure --$p=$v"
 
		configure="$configure --$p=\"$v\""
 
	done
 

	
 
	echo "$configure" >> $config_log
configure
Show inline comments
 
@@ -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
 

	
0 comments (0 inline, 0 general)