From patchwork Thu Oct 29 11:20:07 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Schantl X-Patchwork-Id: 3615 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) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail01.haj.ipfire.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4CMNJy3N9Qz3wgn for ; Thu, 29 Oct 2020 11:20:18 +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 4CMNJx4XwYz1h0; Thu, 29 Oct 2020 11:20:17 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4CMNJx3FsKz2xgy; Thu, 29 Oct 2020 11:20:17 +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 4CMNJv3RQsz2xZs for ; Thu, 29 Oct 2020 11:20:15 +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 4CMNJt4fHfz1WM; Thu, 29 Oct 2020 11:20:14 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1603970414; 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; bh=69a9b4R7U0AZcEhjKPR/Py825cMgwwarkMyrrtJFtFU=; b=IA6mRqHgcWbs29uJh7yeokM6WZeMLU3M+G1AvdBAFmXraBbEHixsRnLlvonQDB2mmWinER ObvMoIQFay1FgtBw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1603970414; 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; bh=69a9b4R7U0AZcEhjKPR/Py825cMgwwarkMyrrtJFtFU=; b=Q9imR2B9UrJ/wWqw5bFQWoDLVX/a66zzXbRhXcVTxCvM/U7X6fmhDz3zKylAP8YZLJEvAo aw+gtmThSOmcFnjOV57LLA3XPDhpb7U/MMoVmXtvvMLLLquqFQIS2ObtVVlXt4ZSGgLhmt ombGbaUKM6PyJ9p+ss3zc5gP8WrU/1NcUdwEUvAEJiV2AqLx3tVB94bxf8z5mvaPtq3VkC eaIY0LXUAUOUR2vm0p9oKmtwrQAeEooGF2cB9YNtQo8IxJ7K60xKKHIdRlZ4ORQ1TwaZ+e 2Xcfe6RgHJNGMVvYD2I4WPEdcYoMBzOOUSvuVWoIPFozGFW18eOh/OgiP8UZow== From: Stefan Schantl To: development@lists.ipfire.org Subject: [PATCH] suricata: Proper use confgured LDFLAGS. Date: Thu, 29 Oct 2020 12:20:07 +0100 Message-Id: <20201029112007.32111-1-stefan.schantl@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: , Errors-To: development-bounces@lists.ipfire.org Sender: "Development" Fixes #12513. Signed-off-by: Stefan Schantl --- lfs/suricata | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lfs/suricata b/lfs/suricata index d47b43d34..2871d8e7b 100644 --- a/lfs/suricata +++ b/lfs/suricata @@ -74,7 +74,7 @@ $(subst %,%_MD5,$(objects)) : $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE) - cd $(DIR_APP) && ./configure \ + cd $(DIR_APP) && LDFLAGS="$(LDFLAGS)" ./configure \ --prefix=/usr \ --sysconfdir=/etc \ --localstatedir=/var \