summaryrefslogtreecommitdiff
path: root/x2p
diff options
context:
space:
mode:
authorPerl 5 Porters <perl5-porters.nicoh.com>1996-01-01 23:11:27 +0000
committerAndy Dougherty <doughera.lafayette.edu>1996-01-01 23:11:27 +0000
commitf70b6ff5dbae63778d9b1ac9a297c2d960e64cbf (patch)
treef19e37cf499bfb2cd7e54150c08a1c8d94c5e86d /x2p
parent207d4cd062af604f6bdff602752c11193548c8e7 (diff)
downloadperl-f70b6ff5dbae63778d9b1ac9a297c2d960e64cbf.tar.gz
Add missing "" around $Config{startperl}.
Diffstat (limited to 'x2p')
-rw-r--r--x2p/find2perl.PL2
-rw-r--r--x2p/s2p.PL2
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.