From c7d6c10ae44e7fca1b284e281595e63b77a716b6 Mon Sep 17 00:00:00 2001 From: kyak Date: Sun, 14 Nov 2010 13:52:41 +0300 Subject: [PATCH] don't need ldd() function if actual ldd is installed --- data/qi_lb60/files/etc/profile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/qi_lb60/files/etc/profile b/data/qi_lb60/files/etc/profile index dafe6ed97..3da828094 100644 --- a/data/qi_lb60/files/etc/profile +++ b/data/qi_lb60/files/etc/profile @@ -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 $*; }