diff options
author | Perl 5 Porters <perl5-porters.nicoh.com> | 1996-01-01 23:11:27 +0000 |
---|---|---|
committer | Andy Dougherty <doughera.lafayette.edu> | 1996-01-01 23:11:27 +0000 |
commit | f70b6ff5dbae63778d9b1ac9a297c2d960e64cbf (patch) | |
tree | f19e37cf499bfb2cd7e54150c08a1c8d94c5e86d /x2p | |
parent | 207d4cd062af604f6bdff602752c11193548c8e7 (diff) | |
download | perl-f70b6ff5dbae63778d9b1ac9a297c2d960e64cbf.tar.gz |
Add missing "" around $Config{startperl}.
Diffstat (limited to 'x2p')
-rw-r--r-- | x2p/find2perl.PL | 2 | ||||
-rw-r--r-- | x2p/s2p.PL | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/x2p/find2perl.PL b/x2p/find2perl.PL index 785ffa63ca..fd8b134fbc 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 fe82b02325..4f7293d4c2 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. |