svn commit: r364513 - head/benchmarks/phoronix-test-suite

Antoine Brodin antoine at FreeBSD.org
Sun Aug 10 08:34:44 UTC 2014


Author: antoine
Date: Sun Aug 10 08:34:43 2014
New Revision: 364513
URL: http://svnweb.freebsd.org/changeset/ports/364513
QAT: https://qat.redports.org/buildarchive/r364513/

Log:
  Fix some stage violations

Modified:
  head/benchmarks/phoronix-test-suite/Makefile

Modified: head/benchmarks/phoronix-test-suite/Makefile
==============================================================================
--- head/benchmarks/phoronix-test-suite/Makefile	Sun Aug 10 08:29:14 2014	(r364512)
+++ head/benchmarks/phoronix-test-suite/Makefile	Sun Aug 10 08:34:43 2014	(r364513)
@@ -58,20 +58,17 @@ post-patch:
 
 do-install:
 	cd ${WRKSRC} && ${INSTALL_OPTS} DESTDIR=${STAGEDIR} ./install-sh ${PREFIX}
-
-post-install:
 .if ${PORT_OPTIONS:MDOCS}
-	@${MKDIR} ${DOCSDIR}
+	@${MKDIR} ${STAGEDIR}${DOCSDIR}
 .for FILE in ${DOCFILES1}
-	@${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR}/${FILE}
+	@${INSTALL_DATA} ${WRKSRC}/${FILE} ${STAGEDIR}${DOCSDIR}/${FILE}
 .endfor
 .for FILE in ${DOCFILES2}
-	@${INSTALL_DATA} ${WRKSRC}/documentation/${FILE} ${DOCSDIR}/${FILE}
+	@${INSTALL_DATA} ${WRKSRC}/documentation/${FILE} ${STAGEDIR}${DOCSDIR}/${FILE}
 .endfor
 .for DIR in stubs includes
-	@${CP} -rf ${WRKSRC}/documentation/${DIR} ${DOCSDIR}
+	@${CP} -rf ${WRKSRC}/documentation/${DIR} ${STAGEDIR}${DOCSDIR}
 .endfor
-	@${ECHO_MSG} "===> Docs installed in ${DOCSDIR}."
 .endif
 
 .include <bsd.port.mk>


More information about the svn-ports-head mailing list