pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/mk Prepend USE_NEW_TOOLS with an underscore to make it...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/85dd6ae878c4
branches:  trunk
changeset: 492910:85dd6ae878c4
user:      jlam <jlam%pkgsrc.org@localhost>
date:      Fri Apr 22 02:20:22 2005 +0000

description:
Prepend USE_NEW_TOOLS with an underscore to make it private.  Developers
should set _USE_NEW_TOOLS=yes in /etc/mk.conf in order to test the new
tools framework.

diffstat:

 mk/bsd.pkg.mk |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (20 lines):

diff -r 50d1781120df -r 85dd6ae878c4 mk/bsd.pkg.mk
--- a/mk/bsd.pkg.mk     Fri Apr 22 02:18:20 2005 +0000
+++ b/mk/bsd.pkg.mk     Fri Apr 22 02:20:22 2005 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: bsd.pkg.mk,v 1.1615 2005/04/21 15:53:53 tv Exp $
+#      $NetBSD: bsd.pkg.mk,v 1.1616 2005/04/22 02:20:22 jlam Exp $
 #
 # This file is in the public domain.
 #
@@ -931,8 +931,8 @@
 #
 .include "../../mk/compiler.mk"
 
-USE_NEW_TOOLS?=        no
-.if !empty(USE_NEW_TOOLS:M[yY][eE][sS])
+_USE_NEW_TOOLS?=       no
+.if !empty(_USE_NEW_TOOLS:M[yY][eE][sS])
 .include "../../mk/tools/bsd.tools.mk"
 .else
 .include "../../mk/tools.mk"



Home | Main Index | Thread Index | Old Index