Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 22 Nov 2020 17:20:27 +0000 (UTC)
From:      Mikael Urankar <mikael@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r556064 - head/lang/rust-bootstrap
Message-ID:  <202011221720.0AMHKRQK006425@repo.freebsd.org>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202011221720.0AMHKRQK006425>