Sat Feb 13 08:29:13 2010 UTC ()
for SSD/Linux, /usr/bin/false, not /bin/false.


(obache)
diff -r1.35 -r1.36 pkgsrc/mk/platform/Linux.mk

cvs diff -r1.35 -r1.36 pkgsrc/mk/platform/Linux.mk (expand / switch to unified diff)

--- pkgsrc/mk/platform/Linux.mk 2010/01/16 02:16:35 1.35
+++ pkgsrc/mk/platform/Linux.mk 2010/02/13 08:29:12 1.36
@@ -1,36 +1,40 @@ @@ -1,36 +1,40 @@
1# $NetBSD: Linux.mk,v 1.35 2010/01/16 02:16:35 obache Exp $ 1# $NetBSD: Linux.mk,v 1.36 2010/02/13 08:29:12 obache Exp $
2# 2#
3# Variable definitions for the Linux operating system. 3# Variable definitions for the Linux operating system.
4 4
5ECHO_N?= ${ECHO} -n 5ECHO_N?= ${ECHO} -n
6.if !defined(X11_TYPE) || ${X11_TYPE} == "native" 6.if !defined(X11_TYPE) || ${X11_TYPE} == "native"
7IMAKE_MAKE?= ${GMAKE} # program which gets invoked by imake 7IMAKE_MAKE?= ${GMAKE} # program which gets invoked by imake
8.endif 8.endif
9IMAKEOPTS+= -DBuildHtmlManPages=NO 9IMAKEOPTS+= -DBuildHtmlManPages=NO
10PKGLOCALEDIR?= share 10PKGLOCALEDIR?= share
11PS?= /bin/ps 11PS?= /bin/ps
12# XXX: default from defaults/mk.conf. Verify/correct for this platform 12# XXX: default from defaults/mk.conf. Verify/correct for this platform
13# and remove this comment. 13# and remove this comment.
14SU?= /bin/su 14SU?= /bin/su
15TYPE?= type # Shell builtin 15TYPE?= type # Shell builtin
16 16
17CPP_PRECOMP_FLAGS?= # unset 17CPP_PRECOMP_FLAGS?= # unset
18DEF_UMASK?= 022 18DEF_UMASK?= 022
19DEFAULT_SERIAL_DEVICE?= /dev/null 19DEFAULT_SERIAL_DEVICE?= /dev/null
20EXPORT_SYMBOLS_LDFLAGS?= # Don't add symbols to the dynamic symbol table 20EXPORT_SYMBOLS_LDFLAGS?= # Don't add symbols to the dynamic symbol table
21GROUPADD?= /usr/sbin/groupadd 21GROUPADD?= /usr/sbin/groupadd
22MOTIF_TYPE_DEFAULT?= openmotif # default 2.0 compatible libs type 22MOTIF_TYPE_DEFAULT?= openmotif # default 2.0 compatible libs type
 23.if exists(/usr/bin/false)
 24NOLOGIN?= /usr/bin/false
 25.else
23NOLOGIN?= /bin/false 26NOLOGIN?= /bin/false
 27.endif
24PKG_TOOLS_BIN?= ${LOCALBASE}/sbin 28PKG_TOOLS_BIN?= ${LOCALBASE}/sbin
25ROOT_CMD?= ${SU} - root -c 29ROOT_CMD?= ${SU} - root -c
26.if exists(/etc/ssdlinux_version) 30.if exists(/etc/ssdlinux_version)
27ROOT_GROUP?= wheel 31ROOT_GROUP?= wheel
28.else 32.else
29ROOT_GROUP?= root 33ROOT_GROUP?= root
30.endif 34.endif
31ROOT_USER?= root 35ROOT_USER?= root
32SERIAL_DEVICES?= /dev/null 36SERIAL_DEVICES?= /dev/null
33ULIMIT_CMD_datasize?= ulimit -d `ulimit -H -d` 37ULIMIT_CMD_datasize?= ulimit -d `ulimit -H -d`
34ULIMIT_CMD_stacksize?= ulimit -s `ulimit -H -s` 38ULIMIT_CMD_stacksize?= ulimit -s `ulimit -H -s`
35ULIMIT_CMD_memorysize?= ulimit -m `ulimit -H -m` 39ULIMIT_CMD_memorysize?= ulimit -m `ulimit -H -m`
36USERADD?= /usr/sbin/useradd 40USERADD?= /usr/sbin/useradd