From patchwork Sun Aug 16 10:29:03 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Tremer X-Patchwork-Id: 3319 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 ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4BTtjp07yYz3x1Y for ; Sun, 16 Aug 2020 10:30:38 +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 4BTtjc1TLfzvc; Sun, 16 Aug 2020 10:30:28 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4BTtjX5bFnz30Xl; Sun, 16 Aug 2020 10:30:24 +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 ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4BTtjV3mnQz2xjj for ; Sun, 16 Aug 2020 10:30:22 +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) (Client did not present a certificate) by mail01.ipfire.org (Postfix) with ESMTPSA id 4BTtjV2p1CzhS; Sun, 16 Aug 2020 10:30:22 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1597573822; 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=EJZzysErAj194OI8LOw8y3d/IDn3F9jgGLJeJi7ucNs=; b=jAX1oPfkqLLikTtiYQxU4MsMb1s9Jq2OSVMPQgKnaQQo5TgyqiToT1fa+9rmphbniTEHKr uxJhI6Hs8WmbP5Dg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1597573822; 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=EJZzysErAj194OI8LOw8y3d/IDn3F9jgGLJeJi7ucNs=; b=c+4IFwP5MyI5jwHlO+gxQQCN8xkbGoqiAQnoNDUmcZs6djUjZdtavrq7T2V4Y9OremR3o+ cUtHeS7ePCZRVyB01UXaXEupzQ5nnXHIlSuqvpIzEtz3nLNNvtsQ/fsP1Wag/6L9NbSeiM 4kVrKDj4VWab7Vvg+9fXg84bJDkYb4ZVRBdH1eroMOdyB7B7Zq7DAtZGHU6FW2KSzDGgq1 zl5JJgs1vM0l5lUgKQ6G89B2xTKS41Sra6R14XpCjej5ug8AnNXYq0EGrC90x2aCNpcxn5 dJyhUuhRwdNl6w08vX/tB+WY0B0QoMAoYBlXQr2K47rMhXoVwU9VRive7GHbxA== From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 12/62] linux-atm: Fix build with GCC 10 Date: Sun, 16 Aug 2020 10:29:03 +0000 Message-Id: <20200816102953.3881-12-michael.tremer@ipfire.org> In-Reply-To: <20200816102953.3881-1-michael.tremer@ipfire.org> References: <20200816102953.3881-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" Signed-off-by: Michael Tremer --- lfs/linux-atm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lfs/linux-atm b/lfs/linux-atm index a3e23dafb..129109b3f 100644 --- a/lfs/linux-atm +++ b/lfs/linux-atm @@ -32,6 +32,8 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) +CFLAGS += -fcommon + ############################################################################### # Top-level Rules ###############################################################################