PERFORCE change 125070 for review

Gabor Kovesdan gabor at FreeBSD.org
Sat Aug 11 15:15:46 PDT 2007


http://perforce.freebsd.org/chv.cgi?CH=125070

Change 125070 by gabor at gabor_server on 2007/08/11 22:15:36

	- For practical reason, change the behaviour of the - signed USE_PERL5
	  values.  For the + behaviour we specify the earliest version the
	  given port works with as it is the easiest way.  Similarly, for
	  - it is easier to specify the earliest version the port does not
	  work with any more, than specifying the laterst version it still
	  works with.  Thus now, - sets IGNORE if the give Perl version is
	  equal to or greater than the given one.

Affected files ...

.. //depot/projects/soc2007/gabor_perlmk/Mk/bsd.perl.mk#18 edit

Differences ...

==== //depot/projects/soc2007/gabor_perlmk/Mk/bsd.perl.mk#18 (text+ko) ====

@@ -119,8 +119,8 @@
 IGNORE=	${USE_PERL5_REASON}
 .endif
 .elif ${__suffix} == "-"
-.if ${USE_PERL5_LEVEL} < ${PERL_LEVEL}
-USE_PERL5_REASON?=	requires Perl ${__prefix} or earlier
+.if ${USE_PERL5_LEVEL} <= ${PERL_LEVEL}
+USE_PERL5_REASON?=	requires a Perl version earlier than ${__prefix}
 IGNORE=	${USE_PERL5_REASON}
 .endif
 .else


More information about the p4-projects mailing list