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
 
@@ -1202,7 +1202,7 @@ check_params() {
 
	fi
 
}
 

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

	
0 comments (0 inline, 0 general)