aboutsummaryrefslogtreecommitdiff
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
parent70ab28f90776de54cd136a411b2914b1b88cc3de (diff)
downloadbusybox-w32-dbd18f639c0c7761937aa38af7a4299842960492.tar.gz
busybox-w32-dbd18f639c0c7761937aa38af7a4299842960492.tar.bz2
busybox-w32-dbd18f639c0c7761937aa38af7a4299842960492.zip
exported symbols may be weak, so allow symbols marked as W
-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
177 } else { 177 } else {
178 # exporting all symbols 178 # exporting all symbols
179 foreach ( @$sym_ar ) { 179 foreach ( @$sym_ar ) {
180 / [ABCDGRST] (.*)$/ and do { 180 / [ABCDGRSTW] (.*)$/ and do {
181 warn "syma = $1\n" if $verbose; 181 warn "syma = $1\n" if $verbose;
182 $exp->{$1} = $name; 182 $exp->{$1} = $name;
183 }; 183 };