Changeset 2600 for script

Show
Ignore:
Timestamp:
05/01/05 17:23:45 (4 years ago)
Author:
autrijus
svk:copy_cache_prev:
4152
Message:

* pugscc --pugs repaired!

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • script/pugscc

    r2590 r2600  
    110110if ($run) { 
    111111    if ($backend eq 'Parrot' and !-x '/usr/bin/env') { 
    112         system("parrot" => $out) == 0 or die $!; 
     112        system("parrot" => $out); 
    113113    } 
    114114    else { 
    115         system($out) == 0 or die $!; 
     115        system {$out} $out; 
    116116    } 
    117117}