git: e7ee4c09f789 - stable/12 - release: ensure gce-check-depends installs lang/python{,3}
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 20 Jul 2023 01:36:41 UTC
The branch stable/12 has been updated by gjb:
URL: https://cgit.FreeBSD.org/src/commit/?id=e7ee4c09f7890f2cd8ed4a0ce27d56583d6ac74f
commit e7ee4c09f7890f2cd8ed4a0ce27d56583d6ac74f
Author: Glen Barber <gjb@FreeBSD.org>
AuthorDate: 2023-07-12 20:08:40 +0000
Commit: Glen Barber <gjb@FreeBSD.org>
CommitDate: 2023-07-20 01:34:49 +0000
release: ensure gce-check-depends installs lang/python{,3}
PR: 272354
Sponsored by: GoFundMe https://www.gofundme.com/f/gjbbsd
Sponsored by: PayPal https://paypal.me/gjbbsd
(cherry picked from commit 0ed426276fd52e917506ab87c05a61c6641ae298)
---
release/Makefile.gce | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/release/Makefile.gce b/release/Makefile.gce
index e466f9a323bd..0d835a1cb0a2 100644
--- a/release/Makefile.gce
+++ b/release/Makefile.gce
@@ -49,7 +49,9 @@ gce-check-depends:
. endif
env ASSUME_ALWAYS_YES=yes pkg install -y net/google-cloud-sdk
. else
- make -C ${PORTSDIR}/net/google-cloud-sdk BATCH=1 all install clean
+ env UNAME_r=${UNAME_r} make -C ${PORTSDIR}/net/google-cloud-sdk BATCH=1 all install clean
+ env UNAME_r=${UNAME_r} make -C ${PORTSDIR}/lang/python BATCH=1 all install clean
+ env UNAME_r=${UNAME_r} make -C ${PORTSDIR}/lang/python3 BATCH=1 all install clean
. endif
.endif