slitaz-base-files rev 322

ldd: fix shell expansion (and try to fix "dialog" package building).
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Jan 21 16:31:34 2017 +0200 (2017-01-21)
parents 0eb16ee2fcc2
children 18f5344d488c
files rootfs/usr/bin/ldd
line diff
     1.1 --- a/rootfs/usr/bin/ldd	Mon Jan 16 09:10:51 2017 +0200
     1.2 +++ b/rootfs/usr/bin/ldd	Sat Jan 21 16:31:34 2017 +0200
     1.3 @@ -9,6 +9,6 @@
     1.4  	file="$(which "$file")"
     1.5  	ld="$(sed '/\/lib.*\/ld/!dq' "$file")"
     1.6  	echo "$file" | sed 's%^./%%;s%$%:%'
     1.7 -	LD_TRACE_LOADED_OBJECTS=1 "${ld:-/lib/ld-linux*}" "$file"
     1.8 +	LD_TRACE_LOADED_OBJECTS=1 "$(realpath ${ld:-/lib/ld-linux*})" "$file"
     1.9  	echo
    1.10  done