Ignore empty lines in EXPORTS

This commit is contained in:
Stefan `Sec` Zehl 2011-08-03 17:11:50 +02:00
parent 9b2cee24d0
commit 3542f8acd6
1 changed files with 2 additions and 0 deletions

View File

@ -18,6 +18,8 @@ my @symb;
open(Q,"<","l0dable/EXPORTS") || die "$!";
while(<Q>){
chomp;s/\r$//;
next if /^#/;
next if /^\s*$/;
push @symb,$_;
};
close(Q);