Omit warning message

This commit is contained in:
Tom Eastep 2010-12-01 09:21:23 -08:00
parent cdb75bfd96
commit b224eb80d5

View File

@ -2905,13 +2905,9 @@ sub get_params() {
fatal_error "Processing of $fn failed" if $?;
my $variable;
for ( @params ) {
if ( /^export (.*?)='(.*)'$/ ) {
$params{$variable = $1} = $2 unless $1 eq '_';
} elsif ( /^export (.*?)='/ ) {
warning_message "Exported symbol '$1' ignored";
$params{$1} = $2 unless $1 eq '_';
}
}
}