pkgsrc-WIP-changes archive

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

rust183: drop -v option to x.py invocations, to reduce logging volume.



Module Name:	pkgsrc-wip
Committed By:	Havard Eidnes <he%NetBSD.org@localhost>
Pushed By:	he
Date:		Fri Jan 31 12:07:49 2025 +0000
Changeset:	7e4fd0152b24f09e87af02bf1b3cc381ad757fae

Modified Files:
	rust183/Makefile

Log Message:
rust183: drop -v option to x.py invocations, to reduce logging volume.

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

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 1a13c55969..c833115506 100644
--- a/rust183/Makefile
+++ b/rust183/Makefile
@@ -533,12 +533,12 @@ do-build:
 	${SETENV} ${MAKE_ENV}						\
 	sh -c "if [ \"${BUILD_TARGET}\" = \"dist\" ]; then		\
 		unset DESTDIR;						\
-		${TOOL_PYTHONBIN} ./x.py -v				\
+		${PYTHONBIN} ./x.py 					\
 		    ${BUILD_TARGET} -j ${_MAKE_JOBS_N};			\
 	else								\
-		${TOOL_PYTHONBIN} ./x.py -v				\
+		${PYTHONBIN} ./x.py					\
 		    ${BUILD_TARGET} --stage 2 -j ${_MAKE_JOBS_N} &&	\
-		${TOOL_PYTHONBIN} ./x.py -v				\
+		${PYTHONBIN} ./x.py					\
 		    doc --stage 2 -j ${_MAKE_JOBS_N};			\
 	fi"
 
@@ -546,7 +546,7 @@ do-test:
 	${RUN}${_ULIMIT_CMD}						\
 	cd ${WRKSRC} &&							\
 	${SETENV} ${MAKE_ENV}						\
-		${TOOL_PYTHONBIN} ./x.py -v test -j ${_MAKE_JOBS_N}
+		${PYTHONBIN} ./x.py test -j ${_MAKE_JOBS_N}
 
 PATCH_BINARIES+=	bin/cargo
 PATCH_BINARIES+=	bin/cargo-clippy
@@ -561,7 +561,7 @@ do-install:
 	${RUN}${_ULIMIT_CMD}						\
 	cd ${WRKSRC} &&							\
 	${SETENV} ${MAKE_ENV} ${INSTALL_ENV} 				\
-		${TOOL_PYTHONBIN} ./x.py -v install -j ${_MAKE_JOBS_N};	\
+		${PYTHONBIN} ./x.py install -j ${_MAKE_JOBS_N};	\
 	for bin in ${PATCH_BINARIES}; do				\
 		f=${DESTDIR}${PREFIX}/$${bin};				\
 		if [ -f $$f ]; then					\


Home | Main Index | Thread Index | Old Index