From patchwork Wed Mar 29 11:40:16 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Schantl X-Patchwork-Id: 6744 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 "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4Pml3Z5p65z3xCl for ; Wed, 29 Mar 2023 11:40:26 +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) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4Pml3Z0GgQzdn; Wed, 29 Mar 2023 11:40:26 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4Pml3Y5hw9z2y9s; Wed, 29 Mar 2023 11:40:25 +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 "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4Pml3W5kmrz2xCy for ; Wed, 29 Mar 2023 11:40:23 +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 4Pml3W0sk6zdn; Wed, 29 Mar 2023 11:40:23 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1680090023; 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=23hrV92cPLZ0QNo0ecavo90/KOMhyXHHB5LPgY33qVE=; b=EF0h66zJ4n5Bg3MW/EriMelhezKG5l8/zT7UDEbtV6kQ7lpjAsWtPCI8MOFyKSVeeCxjwd +1n2TDopdtHNstBw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1680090023; 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=23hrV92cPLZ0QNo0ecavo90/KOMhyXHHB5LPgY33qVE=; b=G22MlWtFIC0nKBWsP1YVs5HP9CkMslg++hhiIy9acfymOKxcNdrz49fOEI9A9HCLnJ58Sp /jhlP6lsCbcM0MJeR3243go+3NwILbBVa7bgDT1+ROU9UhGnnqN1CziLVAIHsTG9AWWIi0 PPxUKOkGdPV60KJueNb8FknDKLHUMk9REYXgHMnk7Cf8Omry9NNt16R6p++/rlh9oy4XK+ H2MA33i6AWkQJ87eQ/9ePIeO3roV/rGxlYXpslmgaIwejc4RUZQ1GO2HcOuGduKEakuQjv 19Xxw6jJD/ZeGAd/23zD2oKPEJGoUdNhj2YsrEe/6DWGojbcvCOFdG2FkjusUg== From: Stefan Schantl To: pakfire@lists.ipfire.org Subject: [PATCH] meson: Avoid calling meson without setup is deprecated Date: Wed, 29 Mar 2023 13:40:16 +0200 Message-Id: <20230329114016.454052-1-stefan.schantl@ipfire.org> MIME-Version: 1.0 X-BeenThere: pakfire@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Mailinglist for the Pakfire Build System." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: pakfire-bounces@lists.ipfire.org Sender: "Pakfire" Calling meson without setup as argument when configure a project is deprecated since a while by the meson developers. To avoid any problems in future adding this argument. Signed-off-by: Stefan Schantl --- macros/meson.macro | 1 + 1 file changed, 1 insertion(+) diff --git a/macros/meson.macro b/macros/meson.macro index 28c370fc..951bd737 100644 --- a/macros/meson.macro +++ b/macros/meson.macro @@ -10,6 +10,7 @@ build _smp_mesonflags = %{PARALLELISMFLAGS} meson = %{__meson} \ + setup \ --buildtype=plain \ --prefix=%{prefix} \ --libdir=%{libdir} \