From: Mike Frysinger Date: Sun, 18 Nov 2007 06:13:58 +0000 (-0000) Subject: exported symbols may be weak, so allow symbols marked as W X-Git-Tag: 1_9_0~91 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=dbd18f639c0c7761937aa38af7a4299842960492;p=oweals%2Fbusybox.git exported symbols may be weak, so allow symbols marked as W --- diff --git a/examples/depmod.pl b/examples/depmod.pl index ca2e8f76d..c356d2715 100755 --- a/examples/depmod.pl +++ b/examples/depmod.pl @@ -177,7 +177,7 @@ sub build_ref_tables } else { # exporting all symbols foreach ( @$sym_ar ) { - / [ABCDGRST] (.*)$/ and do { + / [ABCDGRSTW] (.*)$/ and do { warn "syma = $1\n" if $verbose; $exp->{$1} = $name; };