diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-11-18 06:13:58 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-11-18 06:13:58 +0000 |
commit | dbd18f639c0c7761937aa38af7a4299842960492 (patch) | |
tree | 119a38d14de775ccd87bd695585cb8eaa09c9958 /examples | |
parent | 70ab28f90776de54cd136a411b2914b1b88cc3de (diff) | |
download | busybox-dbd18f639c0c7761937aa38af7a4299842960492.tar.gz |
exported symbols may be weak, so allow symbols marked as W
Diffstat (limited to 'examples')
-rwxr-xr-x | examples/depmod.pl | 2 |
1 files changed, 1 insertions, 1 deletions
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; }; |