base-files: fix ldd definition if /usr/bin/ldd exists
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 42976
This commit is contained in:
parent
f2a4294ab5
commit
0ef474a118
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
RAM_ROOT=/tmp/root
|
RAM_ROOT=/tmp/root
|
||||||
|
|
||||||
ldd() { LD_TRACE_LOADED_OBJECTS=1 $*; }
|
[ -x /usr/bin/ldd ] || ldd() { LD_TRACE_LOADED_OBJECTS=1 $*; }
|
||||||
libs() { ldd $* | awk '{print $3}'; }
|
libs() { ldd $* | awk '{print $3}'; }
|
||||||
|
|
||||||
install_file() { # <file> [ <file> ... ]
|
install_file() { # <file> [ <file> ... ]
|
||||||
|
|
Loading…
Reference in a new issue