From 6c286beb39f61c9457c19deb0aa90bb172d80505 Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Thu, 27 Feb 2025 17:52:22 +0100 Subject: [PATCH] build/deb: add step for new Go bootstrap to debian rules (#31283) Next attempt at fixing the build on launchpad.net --- build/deb/ethereum/deb.rules | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build/deb/ethereum/deb.rules b/build/deb/ethereum/deb.rules index 3287e15ff0..5905ad50a7 100644 --- a/build/deb/ethereum/deb.rules +++ b/build/deb/ethereum/deb.rules @@ -21,7 +21,8 @@ override_dh_auto_build: # requirements opposed to older versions of Go. (mv .goboot-1 ../ && cd ../.goboot-1/src && ./make.bash) (mv .goboot-2 ../ && cd ../.goboot-2/src && GOROOT_BOOTSTRAP=`pwd`/../../.goboot-1 ./make.bash) - (mv .go ../ && cd ../.go/src && GOROOT_BOOTSTRAP=`pwd`/../../.goboot-2 ./make.bash) + (mv .goboot-3 ../ && cd ../.goboot-3/src && GOROOT_BOOTSTRAP=`pwd`/../../.goboot-2 ./make.bash) + (mv .go ../ && cd ../.go/src && GOROOT_BOOTSTRAP=`pwd`/../../.goboot-3 ./make.bash) # We can't download external go modules within Launchpad, so we're shipping the # entire dependency source cache with go-ethereum.