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:
parent
d1cd32b44d
commit
97bc60ea6c
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user