PERFORCE change 125425 for review

Andrew Pantyukhin sat at FreeBSD.org
Mon Aug 20 09:44:14 PDT 2007


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

Change 125425 by sat at sat_amilo on 2007/08/20 16:43:40

	- Make "yes" case-insensitive

Affected files ...

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

Differences ...

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

@@ -116,7 +116,7 @@
 USE_PERL5_STRING=	yes
 .endif
 
-.if ${USE_PERL5_STRING} != "yes"
+.if ${USE_PERL5_STRING:L} != "yes"
 want_perl_sign=		${USE_PERL5_STRING:C|^[0-9.]+||}
 want_perl_ver=		${USE_PERL5_STRING:S|${want_perl_sign}$||}
 want_perl_major=	${want_perl_ver:C|\..*||}
@@ -153,7 +153,7 @@
 .else # wrong suffix
 IGNORE=	improper use of USE_PERL5
 .endif
-.endif #${USE_PERL5_STRING} != "yes"
+.endif #${USE_PERL5_STRING:L} != "yes"
 
 SITE_PERL_REL?=	lib/perl5/site_perl/${PERL_VER}
 SITE_PERL?=	${LOCALBASE}/${SITE_PERL_REL}


More information about the p4-projects mailing list