svn commit: r225254 - stable/8/etc/rc.d

Xin LI delphij at FreeBSD.org
Tue Aug 30 01:25:13 UTC 2011


Author: delphij
Date: Tue Aug 30 01:25:12 2011
New Revision: 225254
URL: http://svn.freebsd.org/changeset/base/225254

Log:
  MFC r225120:
  
  Honor WITHOUT_IPX when installing etc/rc.d/ipxrouted.

Modified:
  stable/8/etc/rc.d/Makefile
Directory Properties:
  stable/8/etc/   (props changed)

Modified: stable/8/etc/rc.d/Makefile
==============================================================================
--- stable/8/etc/rc.d/Makefile	Tue Aug 30 01:22:27 2011	(r225253)
+++ stable/8/etc/rc.d/Makefile	Tue Aug 30 01:25:12 2011	(r225254)
@@ -16,7 +16,7 @@ FILES=	DAEMON FILESYSTEMS LOGIN NETWORKI
 	hostapd hostid hostid_save hostname \
 	inetd initrandom \
 	ip6addrctl ipfilter ipfs ipfw ipmon \
-	ipnat ipsec ipxrouted \
+	ipnat ipsec \
 	jail \
 	kadmind kerberos keyserv kld kldxref kpasswdd \
 	ldconfig local localpkg lockd lpd \
@@ -42,6 +42,10 @@ FILES=	DAEMON FILESYSTEMS LOGIN NETWORKI
 	ypset ypupdated ypxfrd \
 	zfs zvol
 
+.if ${MK_IPX} != "no"
+FILES+=	ipxrouted
+.endif
+
 .if ${MK_OPENSSH} != "no"
 FILES+=	sshd
 .endif


More information about the svn-src-all mailing list