diff options
author | crees <crees@FreeBSD.org> | 2012-07-02 00:38:22 +0800 |
---|---|---|
committer | crees <crees@FreeBSD.org> | 2012-07-02 00:38:22 +0800 |
commit | d3121676eca7e426834101177e6cfbf57ab67da6 (patch) | |
tree | ddf67e9e1c9e71088cf03de30d6989603424d9e6 /Mk | |
parent | 86fb1f10ba060d5658abdbb777c47acee0cd92b7 (diff) | |
download | freebsd-ports-gnome-d3121676eca7e426834101177e6cfbf57ab67da6.tar.gz freebsd-ports-gnome-d3121676eca7e426834101177e6cfbf57ab67da6.tar.zst freebsd-ports-gnome-d3121676eca7e426834101177e6cfbf57ab67da6.zip |
Don't clobber USE_PERL5 values when USE_PERL5 is set.
Example of the problems caused:
http://lists.freebsd.org/pipermail/freebsd-ports/2012-May/075194.html
PR: ports/168379
Submitted by: crees
Reviewed by: Silence on perl@ for over a month
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 541c4f34fa06..757b52eb0373 100644 --- a/Mk/bsd.perl.mk +++ b/Mk/bsd.perl.mk @@ -170,7 +170,7 @@ CONFIGURE_ARGS+= INSTALLDIRS="site" .endif # defined(PERL_MODBUILD) .if defined(PERL_CONFIGURE) -USE_PERL5= yes +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. |