Differences From
Artifact [c3da5a4199]:
1
2
3
4
5
6
7
8
9
10
11
|
# vim:ft=make:
NFSCLIENT_ENABLE?=no
.if empty(NFSCLIENT_ENABLE:tl:Mno)
DAEMON_rpcbind_ENABLE=yes
.endif
nfsclient: NETWORK rpcbind rpc_umntall
.export NFSCLIENT_ENABLE
test -z "$${NFSCLIENT_ENABLE}" || kldload -n nfs
|
<
<
<
|
1
2
3
4
5
6
7
8
|
NFSCLIENT_ENABLE?=no
.if empty(NFSCLIENT_ENABLE:tl:Mno)
DAEMON_rpcbind_ENABLE=yes
.endif
nfsclient: NETWORK rpcbind rpc_umntall
test -z "$${NFSCLIENT_ENABLE}" || kldload -n nfs
|