diff --git a/BootRoot/Yard.pm b/BootRoot/Yard.pm index 6dfb75b..ad960b4 100644 --- a/BootRoot/Yard.pm +++ b/BootRoot/Yard.pm @@ -531,8 +531,10 @@ sub library_dependencies { ##### EXECUTABLE LOADABLE BINARY ##### Run ldd to get library dependencies. my $line; -## - foreach $line (`/usr/i386-linux-uclibc/bin/ldd $file`) { + + ## Busybox uses a different ldd +## foreach $line (`/usr/i386-linux-uclibc/bin/ldd $file`) { + foreach $line (`ldd $file`) { my($lib) = $line =~ / => (\S+)/; next unless $lib; my($abs_lib) = $lib;