Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 20 Aug 2007 16:44:12 GMT
From:      Andrew Pantyukhin <sat@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 125425 for review
Message-ID:  <200708201644.l7KGiCjB026612@repoman.freebsd.org>

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

Change 125425 by sat@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}



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