mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-01-18 16:25:05 +08:00
minor bugfix in performtest.pl
This commit is contained in:
parent
22343c2c72
commit
a21194646a
@ -133,7 +133,7 @@ die "Please specify either --nasm or --clean. Use --help for help.\n"
|
||||
unless $nasm or $clean;
|
||||
die "Please specify the test files, e.g. *.asm\n" unless @ARGV;
|
||||
|
||||
unless (-x $nasm) {
|
||||
unless (!defined $nasm or -x $nasm) {
|
||||
warn "Warning: $nasm may not be executable. Expect problems.\n\n";
|
||||
sleep 5;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user