Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2007-11-18 09:13:58 +0300
committerMike Frysinger <vapier@gentoo.org>2007-11-18 09:13:58 +0300
commitdbd18f639c0c7761937aa38af7a4299842960492 (patch)
tree119a38d14de775ccd87bd695585cb8eaa09c9958 /examples
parent70ab28f90776de54cd136a411b2914b1b88cc3de (diff)
exported symbols may be weak, so allow symbols marked as W
Diffstat (limited to 'examples')
-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;
};