Fix "carryover" of exclude information from one file to another.

my %foo; doesn't mean %foo is initialized to empty, need my %foo = ();
or my %foo = undef; or similar for that.
This commit is contained in:
H. Peter Anvin 2008-02-05 21:27:43 -08:00
parent bb2fa762b4
commit 877ca3bc80

View File

@ -118,7 +118,8 @@ sub insert_deps($) {
}
close(IN);
my $e, %do_exclude;
my $e;
my %do_exclude = ();
foreach $e (@exclude) {
$do_exclude{$e} = 1;
}