PERFORCE change 124897 for review

Gabor Kovesdan gabor at FreeBSD.org
Wed Aug 8 05:57:46 PDT 2007


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

Change 124897 by gabor at gabor_server on 2007/08/08 12:56:44

	- Let the user specify an own reason for the required PERL_LEVEL via
	  USE_PERL5_REASON

Affected files ...

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

Differences ...

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

@@ -50,15 +50,18 @@
 
 .if ${__suffix} == "+"
 .if ${__prefix} > ${PERL_LEVEL}
-IGNORE= You need Perl ${__prefix} or newer, please install latest lang/perl5.8
+USE_PERL5_REASON?=	You need Perl ${__prefix} or newer, please install latest lang/perl5.8
+IGNORE=	${USE_PERL5_REASON)
 .endif
 .elif ${__suffix} == ""
 .if ${__prefix} != ${PERL_LEVEL}
-IGNORE= You need Perl ${__prefix} exactly
+USE_PERL5_REASON?=	You need Perl ${__prefix} exactly
+IGNORE=	${USE_PERL5_REASON)
 .endif
 .elif ${__suffix} == "-"
 .if ${__prefix} < ${PERL_LEVEL}
-IGNORE= You need Perl ${__prefix} or earlier
+USE_PERL5_REASON?=	You need Perl ${__prefix} or earlier
+IGNORE=	${USE_PERL5_REASON)
 .endif
 .else
 .BEGIN:


More information about the p4-projects mailing list