Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 11 Aug 2007 22:15:45 GMT
From:      Gabor Kovesdan <gabor@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 125070 for review
Message-ID:  <200708112215.l7BMFjG3029610@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=125070

Change 125070 by gabor@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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200708112215.l7BMFjG3029610>