Fix "carryover" of exclude information from one file to another.
commit877ca3bc8080cb36b51e1288a8d5dedae733cadd
authorH. Peter Anvin <hpa@zytor.com>
Wed, 6 Feb 2008 05:27:43 +0000 (5 21:27 -0800)
committerH. Peter Anvin <hpa@zytor.com>
Wed, 6 Feb 2008 05:28:44 +0000 (5 21:28 -0800)
treea08d3b13e3c89b7c4837c2187e86be0ca5e80e96
parentbb2fa762b4a42f752a0b6d88ef553ec9357ea9b1
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.
mkdep.pl