1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-24 00:30:16 +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 committed by Xiangfu Liu
parent 9778725e49
commit 19ce690a51

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 $*; }