From: Perl 5 Porters Date: Mon, 1 Jan 1996 23:11:27 +0000 (+0000) Subject: Add missing "" around $Config{startperl}. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f70b6ff5dbae63778d9b1ac9a297c2d960e64cbf;p=p5sagit%2Fp5-mst-13.2.git Add missing "" around $Config{startperl}. --- diff --git a/x2p/find2perl.PL b/x2p/find2perl.PL index 785ffa6..fd8b134 100644 --- a/x2p/find2perl.PL +++ b/x2p/find2perl.PL @@ -29,7 +29,7 @@ print OUT <<"!GROK!THIS!"; $Config{'startperl'} eval 'exec perl -S \$0 "\$@"' if 0; -\$startperl = $Config{startperl}; +\$startperl = "$Config{startperl}"; !GROK!THIS! # In the following, perl variables are not expanded during extraction. diff --git a/x2p/s2p.PL b/x2p/s2p.PL index fe82b02..4f7293d 100644 --- a/x2p/s2p.PL +++ b/x2p/s2p.PL @@ -29,7 +29,7 @@ print OUT <<"!GROK!THIS!"; $Config{'startperl'} eval 'exec perl -S \$0 "\$@"' if 0; -\$startperl = $Config{startperl}; +\$startperl = "$Config{startperl}"; !GROK!THIS! # In the following, perl variables are not expanded during extraction.