pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

rust183: Restore TOOL_PYTHONBIN.



Module Name:	pkgsrc-wip
Committed By:	Taylor R Campbell <riastradh%NetBSD.org@localhost>
Pushed By:	riastradh
Date:		Wed Feb 5 20:14:21 2025 +0000
Changeset:	b02c03ae9377bc37a040877e87b179d6247a12e2

Modified Files:
	rust183/Makefile

Log Message:
rust183: Restore TOOL_PYTHONBIN.

This was lost in the change to remove `-v' from bootstrap args.

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=b02c03ae9377bc37a040877e87b179d6247a12e2

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 rust183/Makefile | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diffs:
diff --git a/rust183/Makefile b/rust183/Makefile
index 742c28a259..2fd48d74d1 100644
--- a/rust183/Makefile
+++ b/rust183/Makefile
@@ -534,12 +534,12 @@ do-build:
 	${SETENV} ${MAKE_ENV}						\
 	sh -c "if [ \"${BUILD_TARGET}\" = \"dist\" ]; then		\
 		unset DESTDIR;						\
-		${PYTHONBIN} ./x.py 					\
+		${TOOL_PYTHONBIN} ./x.py				\
 		    ${BUILD_TARGET} -j ${_MAKE_JOBS_N};			\
 	else								\
-		${PYTHONBIN} ./x.py					\
+		${TOOL_PYTHONBIN} ./x.py				\
 		    ${BUILD_TARGET} --stage 2 -j ${_MAKE_JOBS_N} &&	\
-		${PYTHONBIN} ./x.py					\
+		${TOOL_PYTHONBIN} ./x.py				\
 		    doc --stage 2 -j ${_MAKE_JOBS_N};			\
 	fi"
 
@@ -547,7 +547,7 @@ do-test:
 	${RUN}${_ULIMIT_CMD}						\
 	cd ${WRKSRC} &&							\
 	${SETENV} ${MAKE_ENV}						\
-		${PYTHONBIN} ./x.py test -j ${_MAKE_JOBS_N}
+		${TOOL_PYTHONBIN} ./x.py test -j ${_MAKE_JOBS_N}
 
 PATCH_BINARIES+=	bin/cargo
 PATCH_BINARIES+=	bin/cargo-clippy
@@ -562,7 +562,7 @@ do-install:
 	${RUN}${_ULIMIT_CMD}						\
 	cd ${WRKSRC} &&							\
 	${SETENV} ${MAKE_ENV} ${INSTALL_ENV} 				\
-		${PYTHONBIN} ./x.py install -j ${_MAKE_JOBS_N}
+		${TOOL_PYTHONBIN} ./x.py install -j ${_MAKE_JOBS_N}
 .if ${OPSYS} == "NetBSD"
 	for bin in ${PATCH_BINARIES}; do				\
 		f=${DESTDIR}${PREFIX}/$${bin};				\


Home | Main Index | Thread Index | Old Index