aboutsummaryrefslogtreecommitdiff
path: root/examples/depmod.pl
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2007-11-18 06:13:58 +0000
committerMike Frysinger <vapier@gentoo.org>2007-11-18 06:13:58 +0000
commitdbd18f639c0c7761937aa38af7a4299842960492 (patch)
tree119a38d14de775ccd87bd695585cb8eaa09c9958 /examples/depmod.pl
parent70ab28f90776de54cd136a411b2914b1b88cc3de (diff)
downloadbusybox-dbd18f639c0c7761937aa38af7a4299842960492.tar.gz
exported symbols may be weak, so allow symbols marked as W
Diffstat (limited to 'examples/depmod.pl')
-rwxr-xr-xexamples/depmod.pl2
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;
};