From e1bbdd96eb64e5608682fac700d30b48f18aea2f Mon Sep 17 00:00:00 2001 From: landley Date: Fri, 2 Jun 2006 21:30:40 +0000 Subject: Patch from Atsushi Nemoto: This patch make depmod.pl more robust in cross environment.  If native nm did not recognize target's object, you can override it with NM environment variable. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: svn://busybox.net/trunk/busybox@15268 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- examples/depmod.pl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/examples/depmod.pl b/examples/depmod.pl index 0e66ee3eb..19eca80eb 100755 --- a/examples/depmod.pl +++ b/examples/depmod.pl @@ -25,6 +25,7 @@ my $kernelsyms=""; my $stdout=0; my $verbose=0; my $help=0; +my $nm = $ENV{'NM'} || "nm"; # more globals my (@liblist) = (); @@ -104,7 +105,7 @@ foreach my $obj ( @liblist ){ warn "\nMODULE = $tgtname\n" if $verbose; # get a list of symbols - my @output=`nm $obj`; + my @output=`$nm $obj`; build_ref_tables($tgtname, \@output, $exp, $dep); } @@ -112,7 +113,7 @@ foreach my $obj ( @liblist ){ # vmlinux is a special name that is only used to resolve symbols my $tgtname = 'vmlinux'; -my @output = $kernelsyms ? `cat $kernelsyms` : `nm $kernel`; +my @output = $kernelsyms ? `cat $kernelsyms` : `$nm $kernel`; warn "\nMODULE = $tgtname\n" if $verbose; build_ref_tables($tgtname, \@output, $exp, $dep); -- cgit v1.2.3-55-g6feb