Changeset - r22802:698798325122
[Not reviewed]
master
0 1 0
Patric Stout - 7 years ago 2018-04-14 20:05:39
truebrain@openttd.org
Fix 6ac0790: don't show the location to / failure of 'realpath' every time (#6719)
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
config.lib
Show inline comments
 
@@ -1199,13 +1199,13 @@ check_params() {
 
		log 1 "menu item directory... $menu_dir"
 
	else
 
		log 1 "menu item directory... none"
 
	fi
 
}
 

	
 
if ! which realpath; then
 
if [ -z `which realpath 2>/dev/null` ]; then
 
	realpath() { readlink -f -- "$@"; }
 
fi
 

	
 
make_compiler_cflags() {
 
	# Params:
 
	# $1 - compiler
0 comments (0 inline, 0 general)