svn commit: r556064 - head/lang/rust-bootstrap

Mikael Urankar mikael at FreeBSD.org
Sun Nov 22 17:20:27 UTC 2020


Author: mikael
Date: Sun Nov 22 17:20:27 2020
New Revision: 556064
URL: https://svnweb.freebsd.org/changeset/ports/556064

Log:
  lang/rust-bootstrap: Only package the bootstrap for the given flavor
  
  No need to add the x86 bootstrap for every arches

Modified:
  head/lang/rust-bootstrap/Makefile

Modified: head/lang/rust-bootstrap/Makefile
==============================================================================
--- head/lang/rust-bootstrap/Makefile	Sun Nov 22 16:46:30 2020	(r556063)
+++ head/lang/rust-bootstrap/Makefile	Sun Nov 22 17:20:27 2020	(r556064)
@@ -213,7 +213,7 @@ do-build:
 
 do-install:
 	@${MKDIR} ${STAGEDIR}${PREFIX}/rust-bootstrap/${FLAVOR}
-	${INSTALL_DATA} ${WRKSRC}/build/dist/*-unknown-${OPSYS:tl}${EXTRACT_SUFX} \
+	${INSTALL_DATA} ${WRKSRC}/build/dist/*-${_RUST_ARCH_${FLAVOR}:U${FLAVOR}}-unknown-${OPSYS:tl}${EXTRACT_SUFX} \
 		${STAGEDIR}${PREFIX}/rust-bootstrap/${FLAVOR}
 .if ${FLAVOR:Mpowerpc64_*}
 	@cd ${STAGEDIR}${PREFIX}/rust-bootstrap/${FLAVOR} && for f in *${EXTRACT_SUFX}; do \


More information about the svn-ports-all mailing list