1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-27 17:15:00 +02:00

don't need ldd() function if actual ldd is installed

This commit is contained in:
kyak 2010-11-14 13:52:41 +03:00
parent dcc7d75ed4
commit c7d6c10ae4

View File

@ -17,4 +17,4 @@ export HISTFILE=$HOME/.ash_history
[ -z "$KSH_VERSION" -o \! -s /etc/mkshrc ] || . /etc/mkshrc
[ -x /sbin/arp ] || arp() { cat /proc/net/arp; }
[ -z /bin/ldd ] || ldd() { LD_TRACE_LOADED_OBJECTS=1 $*; }
[ -x /usr/bin/ldd ] || ldd() { LD_TRACE_LOADED_OBJECTS=1 $*; }