Tue Jan 12 19:55:41 2016 UTC ()
Added keyword "platform" for "bmake help"


(rillig)
diff -r1.374 -r1.375 pkgsrc/mk/bsd.prefs.mk

cvs diff -r1.374 -r1.375 pkgsrc/mk/bsd.prefs.mk (expand / switch to unified diff)

--- pkgsrc/mk/bsd.prefs.mk 2015/12/27 12:37:29 1.374
+++ pkgsrc/mk/bsd.prefs.mk 2016/01/12 19:55:41 1.375
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: bsd.prefs.mk,v 1.374 2015/12/27 12:37:29 joerg Exp $ 1# $NetBSD: bsd.prefs.mk,v 1.375 2016/01/12 19:55:41 rillig Exp $
2# 2#
3# This file includes the mk.conf file, which contains the user settings. 3# This file includes the mk.conf file, which contains the user settings.
4# 4#
5# Packages should include this file before any of the .if directives, as 5# Packages should include this file before any of the .if directives, as
6# well as before modifying variables like CFLAGS, LDFLAGS, and so on. 6# well as before modifying variables like CFLAGS, LDFLAGS, and so on.
7# Otherwise the behavior may be unexpected. 7# Otherwise the behavior may be unexpected.
8# 8#
9# When mk.conf is included by this file, the following variables are 9# When mk.conf is included by this file, the following variables are
10# defined: 10# defined:
11# 11#
12# ACCEPTABLE_LICENSES 12# ACCEPTABLE_LICENSES
13# This variable is set to the list of Open Source licenses. See 13# This variable is set to the list of Open Source licenses. See
14# mk/license.mk for details. 14# mk/license.mk for details.
@@ -17,27 +17,27 @@ @@ -17,27 +17,27 @@
17# The platform for which the packages are built. It has the form 17# The platform for which the packages are built. It has the form
18# ${OPSYS}-${OS_VERSION}-${MACHINE_ARCH}. 18# ${OPSYS}-${OS_VERSION}-${MACHINE_ARCH}.
19# 19#
20# NATIVE_MACHINE_PLATFORM 20# NATIVE_MACHINE_PLATFORM
21# The platform on which the packages are built. This is usually 21# The platform on which the packages are built. This is usually
22# the same as ${MACHINE_PLATFORM}, but can be different when 22# the same as ${MACHINE_PLATFORM}, but can be different when
23# cross-building packages. 23# cross-building packages.
24# 24#
25# PKGPATH 25# PKGPATH
26# The path of the package, relative to the pkgsrc top-level 26# The path of the package, relative to the pkgsrc top-level
27# directory. Typical values look like editors/emacs or 27# directory. Typical values look like editors/emacs or
28# misc/openoffice-bin. 28# misc/openoffice-bin.
29# 29#
30# Keywords: mk.conf user 30# Keywords: mk.conf user platform
31# 31#
32 32
33.if !defined(BSD_PKG_MK) 33.if !defined(BSD_PKG_MK)
34 34
35# Let mk.conf know that this is pkgsrc. 35# Let mk.conf know that this is pkgsrc.
36BSD_PKG_MK=1 36BSD_PKG_MK=1
37__PREFIX_SET__:=${PREFIX} 37__PREFIX_SET__:=${PREFIX}
38 38
39# Set PATH if not already set 39# Set PATH if not already set
40.if !defined(PATH) 40.if !defined(PATH)
41PATH=/bin:/usr/bin:/sbin:/usr/sbin 41PATH=/bin:/usr/bin:/sbin:/usr/sbin
42.endif 42.endif
43 43