svn commit: r492208 - head/net/timed

Stefan Esser se at FreeBSD.org
Tue Feb 5 13:21:28 UTC 2019


Author: se
Date: Tue Feb  5 13:21:27 2019
New Revision: 492208
URL: https://svnweb.freebsd.org/changeset/ports/492208

Log:
  Fix installation of the service script in rc.d.
  
  The script was installed without execute permission and was therefore
  ignored during multi-user start-up.
  
  Submitted by:	jhs
  Approved by:	antoine (implicit)

Modified:
  head/net/timed/Makefile

Modified: head/net/timed/Makefile
==============================================================================
--- head/net/timed/Makefile	Tue Feb  5 13:09:05 2019	(r492207)
+++ head/net/timed/Makefile	Tue Feb  5 13:21:27 2019	(r492208)
@@ -2,6 +2,7 @@
 
 PORTNAME=	timed
 PORTVERSION=	8.1
+PORTREVISION=	1
 CATEGORIES=	net
 
 MAINTAINER=	se at FreeBSD.org
@@ -22,7 +23,7 @@ do-install:
 		${INSTALL_MAN} ${WRKSRC}/${f}/${f}.8 \
 			${STAGEDIR}${MAN8PREFIX}/man/man8/
 .endfor
-		${INSTALL_DATA} ${WRKSRC}/rc.d/timed \
+		${INSTALL_SCRIPT} ${WRKSRC}/rc.d/timed \
 			${STAGEDIR}${PREFIX}/etc/rc.d/
 
 .include <bsd.port.mk>


More information about the svn-ports-all mailing list