It will only complain about multiple files if there are multiple files, in which case you don't want to collapse them into a single file before processing, so perhaps this is what you want:
for my $original ( glob '/path/lbn9*.cnt' ) {
rename $original, '/path/lbn9.cnt';
# file processing here...
}