1
0
mirror of https://github.com/fspc/gbootroot.git synced 2025-02-23 09:03:23 -05:00

Had ldd set to the busybox type.

This commit is contained in:
freesource 2001-11-26 19:29:58 +00:00
parent d1cd32b44d
commit 97bc60ea6c

View File

@ -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;