http://git.etherboot.org
/
people
/
indolent
/
gpxe.git
/
.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9dc7ebc
)
Fixed to properly catch multiply defined symbols.
author
Michael Brown
<mcb30@etherboot.org>
Sat, 23 Apr 2005 14:54:30 +0000
(14:54 +0000)
committer
Michael Brown
<mcb30@etherboot.org>
Sat, 23 Apr 2005 14:54:30 +0000
(14:54 +0000)
src/util/symcheck.pl
patch
|
blob
|
history
diff --git
a/src/util/symcheck.pl
b/src/util/symcheck.pl
index
0639886
..
5fb3c95
100755
(executable)
--- a/
src/util/symcheck.pl
+++ b/
src/util/symcheck.pl
@@
-39,7
+39,7
@@
while ( ( my $symbol, my $info ) = each %$symbols ) {
$problems->{$_}->{nonexistent}->{$symbol} = 1 foreach @requires;
} elsif ( @provides > 1 ) {
# Symbol defined in multiple objects
- $problems->{$_}->{multiples}->{$symbol} = 1 foreach @
requir
es;
+ $problems->{$_}->{multiples}->{$symbol} = 1 foreach @
provid
es;
}
if ( @requires == 0 ) {
# Symbol not required