Tue Aug 24 20:44:22 2010 UTC ()
Fix typo in comment.


(wiz)
diff -r1.193 -r1.194 pkgsrc/mk/defaults/mk.conf

cvs diff -r1.193 -r1.194 pkgsrc/mk/defaults/mk.conf (expand / switch to unified diff)

--- pkgsrc/mk/defaults/mk.conf 2010/08/24 19:08:29 1.193
+++ pkgsrc/mk/defaults/mk.conf 2010/08/24 20:44:22 1.194
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: mk.conf,v 1.193 2010/08/24 19:08:29 bad Exp $ 1# $NetBSD: mk.conf,v 1.194 2010/08/24 20:44:22 wiz Exp $
2# 2#
3 3
4# This file provides default values for variables that may be overridden 4# This file provides default values for variables that may be overridden
5# in the MAKECONF file, which is /etc/mk.conf by default. 5# in the MAKECONF file, which is /etc/mk.conf by default.
6# 6#
7# Note: This file is included after the MAKECONF file, so you cannot query 7# Note: This file is included after the MAKECONF file, so you cannot query
8# these default values in the MAKECONF using the ".if" and ".for" 8# these default values in the MAKECONF using the ".if" and ".for"
9# preprocessing directives. 9# preprocessing directives.
10 10
11# ************************************************************************ 11# ************************************************************************
12# NOTE TO PEOPLE EDITING THIS FILE - USE LEADING SPACES, NOT LEADING TABS. 12# NOTE TO PEOPLE EDITING THIS FILE - USE LEADING SPACES, NOT LEADING TABS.
13# ************************************************************************ 13# ************************************************************************
14 14
@@ -123,27 +123,27 @@ PKGSRC_SLEEPSECS?= 5 @@ -123,27 +123,27 @@ PKGSRC_SLEEPSECS?= 5
123# programs have the same API and use consistent compiler options. It is 123# programs have the same API and use consistent compiler options. It is
124# recommended that this variable be only changed directly after 124# recommended that this variable be only changed directly after
125# bootstrapping pkgsrc. 125# bootstrapping pkgsrc.
126# 126#
127# Possible values: 127# Possible values:
128# * 64 (64 bit ABI; both IRIX or Solaris) 128# * 64 (64 bit ABI; both IRIX or Solaris)
129# * 32 (SGI's N32 ABI; only IRIX) 129# * 32 (SGI's N32 ABI; only IRIX)
130# * undefined (SGI's old o32 ABI; only IRIX) 130# * undefined (SGI's old o32 ABI; only IRIX)
131# 131#
132# Default: undefined, but see above. 132# Default: undefined, but see above.
133 133
134#PKG_DEVELOPER= yes 134#PKG_DEVELOPER= yes
135# 135#
136# If defined and no "no" it enables some sanity checks to raise the quality 136# If defined and not "no" it enables some sanity checks to raise the quality
137# of the installed packages. See the files pkgsrc/mk/check/check-*.mk for 137# of the installed packages. See the files pkgsrc/mk/check/check-*.mk for
138# details and further configuration options. 138# details and further configuration options.
139# 139#
140# Possible: defined, not defined, no 140# Possible: defined, not defined, no
141# Default: not defined 141# Default: not defined
142 142
143USE_ABI_DEPENDS?= yes 143USE_ABI_DEPENDS?= yes
144# Honor package prerequisite ABI recommendations. If this is set 144# Honor package prerequisite ABI recommendations. If this is set
145# to "yes", all entries in ABI_DEPENDS will be added to DEPENDS. 145# to "yes", all entries in ABI_DEPENDS will be added to DEPENDS.
146# If set to "no", a warning will be printed if recommendations 146# If set to "no", a warning will be printed if recommendations
147# are possibly ignored. 147# are possibly ignored.
148# 148#
149# WARNING: This should only be changed if you know what you're doing. 149# WARNING: This should only be changed if you know what you're doing.