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 "$!";
|
open(Q,"<","l0dable/EXPORTS") || die "$!";
|
||||||
while(<Q>){
|
while(<Q>){
|
||||||
chomp;s/\r$//;
|
chomp;s/\r$//;
|
||||||
|
next if /^#/;
|
||||||
|
next if /^\s*$/;
|
||||||
push @symb,$_;
|
push @symb,$_;
|
||||||
};
|
};
|
||||||
close(Q);
|
close(Q);
|
||||||
|
|
Loading…
Reference in New Issue