summaryrefslogtreecommitdiff
path: root/Mk/bsd.perl.mk
diff options
context:
space:
mode:
authorMark Linimon <linimon@FreeBSD.org>2007-09-29 03:46:06 +0000
committerMark Linimon <linimon@FreeBSD.org>2007-09-29 03:46:06 +0000
commitefb871fcc7deda1d5005aaf7a661b5c195f8a55c (patch)
treea8bde4d8e4b3d59f074f7ea043bdf915ef52f48d /Mk/bsd.perl.mk
parent- Mark BROKEN on CURRENT [1] (diff)
Fix the CONFIGURE_ENV anti-foot-shooting measure to have the correct
quoting. It turns out that this is only an issue for ports that torture CONFIGURE_ENV to run a command as well as just set the environment (often, used to echo 'N' to fool an interactive script.) Tested on: pointyhat
Notes
Notes: svn path=/head/; revision=200307
Diffstat (limited to 'Mk/bsd.perl.mk')
-rw-r--r--Mk/bsd.perl.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mk/bsd.perl.mk b/Mk/bsd.perl.mk
index 55beb46bc617..408fbccfadc9 100644
--- a/Mk/bsd.perl.mk
+++ b/Mk/bsd.perl.mk
@@ -213,7 +213,7 @@ USE_PERL5= yes
# Disable AutoInstall from attempting to install from CPAN directly in
# the case of missing dependencies. This causes the build to loop on
# the build cluster asking for interactive input.
-CONFIGURE_ENV+= "PERL_EXTUTILS_AUTOINSTALL=--skipdeps"
+CONFIGURE_ENV+= PERL_EXTUTILS_AUTOINSTALL="--skipdeps"
.if defined(BATCH) && !defined(IS_INTERACTIVE)
CONFIGURE_ENV+= PERL_MM_USE_DEFAULT="YES"
.endif # defined(BATCH) && !defined(IS_INTERACTIVE)