svn commit: r347112 - head/math/primegen

Danilo Egea Gondolfo danilo at FreeBSD.org
Wed Mar 5 13:51:57 UTC 2014


Author: danilo
Date: Wed Mar  5 13:51:57 2014
New Revision: 347112
URL: http://svnweb.freebsd.org/changeset/ports/347112
QAT: https://qat.redports.org/buildarchive/r347112/

Log:
  - Unmute installation commands
  
  Reported by:	danfe

Modified:
  head/math/primegen/Makefile

Modified: head/math/primegen/Makefile
==============================================================================
--- head/math/primegen/Makefile	Wed Mar  5 13:44:00 2014	(r347111)
+++ head/math/primegen/Makefile	Wed Mar  5 13:51:57 2014	(r347112)
@@ -39,16 +39,16 @@ do-configure:
 
 do-install:
 .for file in ${PROGRAM_FILES}
-	@${INSTALL_PROGRAM} ${WRKSRC}/${file} ${STAGEDIR}${PREFIX}/bin
+	${INSTALL_PROGRAM} ${WRKSRC}/${file} ${STAGEDIR}${PREFIX}/bin
 .endfor
 .for file in ${HEADER_FILES}
-	@${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${PREFIX}/include
+	${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${PREFIX}/include
 .endfor
 .for file in ${LIB_FILES}
-	@${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${PREFIX}/lib
+	${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${PREFIX}/lib
 .endfor
-	@${INSTALL_MAN} ${WRKSRC}/primes.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
-	@${INSTALL_MAN} ${WRKSRC}/primegaps.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
-	@${INSTALL_MAN} ${WRKSRC}/primegen.3 ${STAGEDIR}${MAN3PREFIX}/man/man3
+	${INSTALL_MAN} ${WRKSRC}/primes.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
+	${INSTALL_MAN} ${WRKSRC}/primegaps.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
+	${INSTALL_MAN} ${WRKSRC}/primegen.3 ${STAGEDIR}${MAN3PREFIX}/man/man3
 
 .include <bsd.port.mk>


More information about the svn-ports-head mailing list