base-files: check for ldd presence and executability (#11991)
[openwrt/staging/chunkeey.git] / package / base-files / files / etc / profile
index 282a747e5248760901e4ddbfc392c7a14ca6ff7d..171adc18ef28fb114ab678d0f1ce669b41457a72 100644 (file)
@@ -12,4 +12,4 @@ export PS1='\u@\h:\w\$ '
 [ -z "$KSH_VERSION" -o \! -s /etc/mkshrc ] || . /etc/mkshrc
 
 [ -x /usr/bin/arp ] || arp() { cat /proc/net/arp; }
-[ -z /usr/bin/ldd ] || ldd() { LD_TRACE_LOADED_OBJECTS=1 $*; }
+[ -x /usr/bin/ldd ] || ldd() { LD_TRACE_LOADED_OBJECTS=1 $*; }