svn commit: r491350 - in head/net/howl: . files

Steve Wills swills at FreeBSD.org
Sun Jan 27 13:50:12 UTC 2019


Author: swills
Date: Sun Jan 27 13:50:11 2019
New Revision: 491350
URL: https://svnweb.freebsd.org/changeset/ports/491350

Log:
  net/howl: Fix mdsnresponder rc script parameter expansion default
  
  PR:		233084
  Submitted by:	elij <elij+freebsd at wundrd.net>
  Approved by:	maintainer timeout (freebsd at donovansbrain.co.uk, >2 months)

Modified:
  head/net/howl/Makefile   (contents, props changed)
  head/net/howl/files/mdnsresponder.in

Modified: head/net/howl/Makefile
==============================================================================
--- head/net/howl/Makefile	Sun Jan 27 13:33:33 2019	(r491349)
+++ head/net/howl/Makefile	Sun Jan 27 13:50:11 2019	(r491350)
@@ -3,7 +3,7 @@
 
 PORTNAME=	howl
 PORTVERSION=	1.0.0
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES?=	net devel
 MASTER_SITES=	http://www.porchdogsoft.com/download/
 

Modified: head/net/howl/files/mdnsresponder.in
==============================================================================
--- head/net/howl/files/mdnsresponder.in	Sun Jan 27 13:33:33 2019	(r491349)
+++ head/net/howl/files/mdnsresponder.in	Sun Jan 27 13:50:11 2019	(r491350)
@@ -20,6 +20,6 @@ command=%%PREFIX%%/bin/mDNSResponder
 
 load_rc_config ${name}
 
-mdnsresponder_enable=${mdnsresponder_enable-"NO"}
+mdnsresponder_enable=${mdnsresponder_enable:-"NO"}
 
 run_rc_command "$1"


More information about the svn-ports-all mailing list