diff options
author | Perl 5 Porters <perl5-porters@africa.nicoh.com> | 1996-03-15 07:43:05 +0000 |
---|---|---|
committer | Charles Bailey <bailey@genetics.upenn.edu> | 1996-03-15 07:43:05 +0000 |
commit | 81ab40be6af2eaad41b1c6d974b757695e2f0b34 (patch) | |
tree | 9c93883f1fe217276d32e71a7f6436eb56bed5cb /os2/perl2cmd.pl | |
parent | 8da795c62c26645b9d86cd8671cbb9c297445664 (diff) | |
download | perl-81ab40be6af2eaad41b1c6d974b757695e2f0b34.tar.gz |
Update OS/2 support
Diffstat (limited to 'os2/perl2cmd.pl')
-rw-r--r-- | os2/perl2cmd.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os2/perl2cmd.pl b/os2/perl2cmd.pl index 215554999a..aa1c353f13 100644 --- a/os2/perl2cmd.pl +++ b/os2/perl2cmd.pl @@ -22,7 +22,7 @@ foreach $file (<$idir/*.>) { $base =~ s|.*/||; $file =~ s|/|\\|g ; print "Processing $file => $dir\\$base.cmd\n"; - system "echo extproc perl -S > $dir\\$base.cmd"; - system "type $file >> $dir\\$base.cmd"; + system 'cmd.exe', '/c', "echo extproc perl -Sx > $dir\\$base.cmd"; + system 'cmd.exe', '/c', "type $file >> $dir\\$base.cmd"; } |