Date: Mon, 18 Mar 2002 10:20:36 +0200 From: Ruslan Ermilov <ru@FreeBSD.org> To: Mark Murray <markm@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src Makefile.inc1 Message-ID: <20020318082036.GB37136@sunbay.com> In-Reply-To: <200203161455.g2GEtcB28572@freefall.freebsd.org> References: <200203161455.g2GEtcB28572@freefall.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
On Sat, Mar 16, 2002 at 06:55:38AM -0800, Mark Murray wrote: > markm 2002/03/16 06:55:38 PST > > Modified files: > . Makefile.inc1 > Log: > Allow the use of NO_PERL as well as NOPERL. The latter is going to > be removed. > > Revision Changes Path > 1.242 +3 -2 src/Makefile.inc1 There's a bug here: Index: Makefile.inc1 =================================================================== RCS file: /home/ncvs/src/Makefile.inc1,v retrieving revision 1.243 diff -u -r1.243 Makefile.inc1 --- Makefile.inc1 16 Mar 2002 21:41:09 -0000 1.243 +++ Makefile.inc1 18 Mar 2002 08:17:09 -0000 @@ -582,7 +587,7 @@ _fortran= gnu/usr.bin/cc/f771 .endif -.if !defined(NOPERL) || defined(NO_PERL) +.if !defined(NOPERL) && !defined(NO_PERL) _perl= gnu/usr.bin/perl/miniperl .endif @@ -768,7 +773,7 @@ _libkeycap= usr.sbin/pcvt/keycap .endif -.if !defined(NOPERL) || defined(NO_PERL) +.if !defined(NOPERL) && !defined(NO_PERL) _libperl= gnu/usr.bin/perl/libperl .endif Cheers, -- Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020318082036.GB37136>