Ignore empty lines in EXPORTS
This commit is contained in:
parent
9b2cee24d0
commit
3542f8acd6
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue