svn commit: r303567 - head/sbin/resolvconf

Pedro F. Giffuni pfg at FreeBSD.org
Sun Jul 31 02:54:28 UTC 2016


Author: pfg
Date: Sun Jul 31 02:54:27 2016
New Revision: 303567
URL: https://svnweb.freebsd.org/changeset/base/303567

Log:
  resolvconf(8) now needs an additional @RESTARTCMD@ replacement when installing.
  
  After r303062, which brought openresolv 3.8.1, we need to replace an
  additional @RESTARTCMD@ in resolvconf.
  
  Reported by:	Guy Yur
  X-MFC with:	r303062

Modified:
  head/sbin/resolvconf/Makefile

Modified: head/sbin/resolvconf/Makefile
==============================================================================
--- head/sbin/resolvconf/Makefile	Sun Jul 31 02:43:45 2016	(r303566)
+++ head/sbin/resolvconf/Makefile	Sun Jul 31 02:54:27 2016	(r303567)
@@ -30,6 +30,7 @@ ${f}:	${f}.in
 		-e 's:@LIBEXECDIR@:${FILESDIR}:g' \
 		-e 's:@VARDIR@:${VARDIR}:g' \
 		-e 's:@RESTARTCMD \(.*\)@:${RESTARTCMD}:g' \
+		-e 's:@RESTARTCMD@:${RESTARTCMD_}:g' \
 		-e 's:@RCDIR@:${RCDIR}:g' \
 		-e 's: vpn : ng[0-9]*&:g' \
 		${DIST}/$@.in > $@


More information about the svn-src-all mailing list