svn commit: r259682 - head/etc/rc.d

Glen Barber gjb at FreeBSD.org
Sat Dec 21 15:02:48 UTC 2013


Author: gjb
Date: Sat Dec 21 15:02:47 2013
New Revision: 259682
URL: http://svnweb.freebsd.org/changeset/base/259682

Log:
  Honor WITHOUT_CASPER.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/etc/rc.d/Makefile

Modified: head/etc/rc.d/Makefile
==============================================================================
--- head/etc/rc.d/Makefile	Sat Dec 21 14:41:32 2013	(r259681)
+++ head/etc/rc.d/Makefile	Sat Dec 21 15:02:47 2013	(r259682)
@@ -26,7 +26,7 @@ FILES=	DAEMON \
 	bridge \
 	bsnmpd \
 	${_bthidd} \
-	casperd \
+	${_casperd} \
 	ccd \
 	cleanvar \
 	cleartmp \
@@ -188,6 +188,10 @@ _hcsecd=	hcsecd
 _ubthidhci=	ubthidhci
 .endif
 
+.if ${MK_CASPER} != "no"
+_casperd=	casperd
+.endif
+
 .if ${MK_UNBOUND} != "no"
 _unbound=	local_unbound
 .endif


More information about the svn-src-head mailing list