Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 5 Feb 2019 13:21:28 +0000 (UTC)
From:      Stefan Esser <se@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r492208 - head/net/timed
Message-ID:  <201902051321.x15DLSh8089552@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201902051321.x15DLSh8089552>