pl2bat tweak from Tye McQueen <tye@metronet.com>
Gurusamy Sarathy [Wed, 23 Sep 1998 09:42:17 +0000 (09:42 +0000)]
p4raw-id: //depot/perl@1840

win32/bin/pl2bat.pl

index 121d784..2fa8088 100644 (file)
@@ -80,6 +80,8 @@ sub process {
     my $linenum = 0;
     my $skiplines = 0;
     my $line;
+    my $start= $Config{startperl};
+    $start= "#!perl"   unless  $start =~ /^#!.*perl/;
     open( FILE, $file ) or die "$0: Can't open $file: $!";
     @file = <FILE>;
     foreach $line ( @file ) {
@@ -109,7 +111,7 @@ sub process {
     $file .= '.bat' unless $file =~ /\.bat$/i or $file =~ /^-$/;
     open( FILE, ">$file" ) or die "Can't open $file: $!";
     print FILE $myhead;
-    print FILE $Config{startperl}, ( $OPT{'w'} ? " -w" : "" ),
+    print FILE $start, ( $OPT{'w'} ? " -w" : "" ),
               "\n#line ", ($headlines+1), "\n" unless $linedone;
     print FILE @file[$skiplines..$#file];
     print FILE $tail unless $taildone;