svn commit: r305668 - head/sysutils/amrstat

Jung-uk Kim jkim at FreeBSD.org
Wed Oct 10 15:53:54 UTC 2012


Author: jkim
Date: Wed Oct 10 15:53:53 2012
New Revision: 305668
URL: http://svn.freebsd.org/changeset/ports/305668

Log:
  Create a directory with default permissions to fix pkgng failure.
  
  Reported by:	bapt (via pkgng exp-run)

Modified:
  head/sysutils/amrstat/Makefile

Modified: head/sysutils/amrstat/Makefile
==============================================================================
--- head/sysutils/amrstat/Makefile	Wed Oct 10 15:34:02 2012	(r305667)
+++ head/sysutils/amrstat/Makefile	Wed Oct 10 15:53:53 2012	(r305668)
@@ -1,9 +1,5 @@
-# Ports collection makefile for:  amrstat
-# Date created:                   2006-04-11
-# Whom:                           "Bjoern A. Zeeb" <bzeeb+freebsd+ports at zabbadoz.net>
-#
+# Created by:	Bjoern A. Zeeb <bzeeb+freebsd+ports at zabbadoz.net>
 # $FreeBSD$
-#
 
 PORTNAME=	amrstat
 PORTVERSION=	20070216
@@ -39,7 +35,8 @@ post-extract:
 
 do-install:
 	${INSTALL_PROGRAM} ${WRKSRC}/amrstat ${PREFIX}/sbin
-	${INSTALL_SCRIPT} -d ${PREFIX}/etc/periodic/daily
-	${INSTALL_SCRIPT} ${WRKDIR}/${PERIODICSCRIPT} ${PREFIX}/etc/periodic/daily
+	${MKDIR} ${PREFIX}/etc/periodic/daily
+	${INSTALL_SCRIPT} ${WRKDIR}/${PERIODICSCRIPT} \
+	    ${PREFIX}/etc/periodic/daily
 
 .include <bsd.port.mk>


More information about the svn-ports-all mailing list