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
 
@@ -254,16 +254,16 @@ save_params() {
 

	
 
	echo "Running configure with following options:" >> $config_log
 
	echo "" >> $config_log
 

	
 
	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
 
	echo "$configure" > config.cache
 
	echo "" >> $config_log
 
}
configure
Show inline comments
 
@@ -22,14 +22,15 @@ SOURCE_LIST="$ROOT_DIR/source.list"
 
if [ "$1" = "--reconfig" ]; then
 
	if ! [ -f "config.cache" ]; then
 
		echo "can't reconfigure, because never configured before"
 
		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
 

	
 
set_default
 
detect_params "$@"
 
save_params
0 comments (0 inline, 0 general)