From patchwork Sun Jan 3 11:11:15 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Tremer X-Patchwork-Id: 3782 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature RSA-PSS (4096 bits)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4D7x0T1nhFz3wgP for ; Sun, 3 Jan 2021 11:11:37 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail02.haj.ipfire.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4D7x0P6sM6z3Tb; Sun, 3 Jan 2021 11:11:33 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4D7x0P47VMz2yvr; Sun, 3 Jan 2021 11:11:33 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature RSA-PSS (4096 bits)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4D7x0M4JT6z2xy0 for ; Sun, 3 Jan 2021 11:11:31 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4D7x0M2rxvz1mN; Sun, 3 Jan 2021 11:11:31 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1609672291; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=KufQUhNY2W8mKrLnaQFVLOLCKDiuc12SoD2QYPv7vM4=; b=WF5+wPESgMIJuQ9Z1SJNoXz1ExXTEoDgcncgcZj9IMox5Gz9YMdlQZ/dD0noAAPVyIQ5Wc v2IK4Fgd4EgXjBAg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1609672291; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=KufQUhNY2W8mKrLnaQFVLOLCKDiuc12SoD2QYPv7vM4=; b=uFdKRXA6rUhV9C+zmxxiQLfciboV0BDXKdH+Li3DIqGwtmzeQqGLWfhiFsDRPMkdrjRtIS XVh6EfeJIsLxumqP6G8gv+u8yqRdAo/1XciCD9NBkLhuQ8EUc6+6eYJ5ifIUMtB7yW1KjG Ryfh1rjkdJWoyOPicLS/Ck5W3VreUlIhG/bpd8Aar/ThRnNrc6qsSA356ysm4p8ZY4702N qV8JJdwoFMGrPAgne2BerZJyYBqGCBVcVWHY3SJsZq/zBd0vJLmrVFWeuvujxU69826k3B Ib8hwW/rLJeRIAEzxjTYApgg7y+KObtocH2yNYwciqCu/sKsh3lk6CZuZBhI6w== From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 3/3] make.sh: Build zstd earlier in stage2 Date: Sun, 3 Jan 2021 11:11:15 +0000 Message-Id: <20210103111115.10749-3-michael.tremer@ipfire.org> In-Reply-To: <20210103111115.10749-1-michael.tremer@ipfire.org> References: <20210103111115.10749-1-michael.tremer@ipfire.org> MIME-Version: 1.0 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Michael Tremer Errors-To: development-bounces@lists.ipfire.org Sender: "Development" Since programs from the toolchain are linked against this, we need to make this library available in stage 2, too. Signed-off-by: Michael Tremer --- make.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make.sh b/make.sh index 886e02512..887298d1d 100755 --- a/make.sh +++ b/make.sh @@ -1079,6 +1079,7 @@ buildbase() { lfsmake2 tzdata lfsmake2 cleanup-toolchain lfsmake2 zlib + lfsmake2 zstd lfsmake2 binutils lfsmake2 gmp lfsmake2 gmp-compat @@ -1391,7 +1392,6 @@ buildipfire() { lfsmake2 spandsp lfsmake2 lz4 lfsmake2 lzo - lfsmake2 zstd lfsmake2 openvpn lfsmake2 mpage lfsmake2 dbus