- Timestamp:
- 03/22/05 21:07:11 (4 years ago)
- svk:copy_cache_prev:
- 2417
- Files:
-
- 1 modified
-
script/pugscc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
script/pugscc
r1024 r1025 58 58 $out =~ s{\..*}{}; 59 59 } 60 $out .= ($^O eq 'MSWin32') ? ".exe" : ".out"; 60 61 if ($backend eq 'Parrot') { 62 $out .= ".pir"; 63 } 64 else { 65 $out .= ($^O eq 'MSWin32') ? ".exe" : ".out"; 66 } 61 67 62 68 unlink "dump.ast"; … … 97 103 if ($run) { 98 104 if ($backend eq 'Parrot' and !-x '/usr/bin/env') { 99 exec parrot => $out;105 system("parrot" => $out) == 0 or die $!; 100 106 } 101 107 else {
