diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2007-09-29 03:46:06 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2007-09-29 03:46:06 +0000 |
commit | efb871fcc7deda1d5005aaf7a661b5c195f8a55c (patch) | |
tree | a8bde4d8e4b3d59f074f7ea043bdf915ef52f48d /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')
-rw-r--r-- | Mk/bsd.perl.mk | 2 |
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) |