Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 10 Aug 2014 08:34:43 +0000 (UTC)
From:      Antoine Brodin <antoine@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r364513 - head/benchmarks/phoronix-test-suite
Message-ID:  <53e72ea3.221e.71aa311e@svn.freebsd.org>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?53e72ea3.221e.71aa311e>