From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 0CB96A0543; Tue, 6 Dec 2022 11:27:43 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id A6BC84021D; Tue, 6 Dec 2022 11:27:42 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mails.dpdk.org (Postfix) with ESMTP id 5612640156 for ; Tue, 6 Dec 2022 11:27:41 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1670322460; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=52OM3bpRcGD6IKLljdRjcklFczlbcEFoNKobrlKjknU=; b=gCCk4tF+rCH8SiCYxZtUY3627Weh5XpPRErrxACN/kmcwnqspXC4LqIDRKe68z0mNhrlXu X8tLarJkEHWenTljzaGY+Y4iEnO5X4tJommvgFvvP336SOIbpRUf1aPh/Qu6eacaNLaftK tJPePZawZYSCG5fxJgy2yVxYijZyhfA= Received: from mail-pj1-f69.google.com (mail-pj1-f69.google.com [209.85.216.69]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_128_GCM_SHA256) id us-mta-298-1Yh84bySNuO-2LlFTW1niw-1; Tue, 06 Dec 2022 05:27:39 -0500 X-MC-Unique: 1Yh84bySNuO-2LlFTW1niw-1 Received: by mail-pj1-f69.google.com with SMTP id ep17-20020a17090ae65100b00219702c495cso11394603pjb.2 for ; Tue, 06 Dec 2022 02:27:39 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:x-gm-message-state:from:to:cc:subject:date:message-id :reply-to; bh=52OM3bpRcGD6IKLljdRjcklFczlbcEFoNKobrlKjknU=; b=kea6+qIBJUvoDqkj9TgTlQrQNP570bvleEOD/vi+wAo+vypvPekMWh1OfDPJJ79Ta6 FegfhrY2W/yk9gefmeJl9JmWZ+U/8bhchwZ/28+expKk/a41CQUFfuiH4XUT+vInzroj NhLEk+gMETtkkqyerqkizjNkgVXs76BDcaVFzjIK64A+iDKM9Xf0PK/AH583Uhh1/SW2 KZsZRoZVLbgHI2NsP2HUlQXBRN7V+azoOE6uOLKZ8ZrI7MEh6FgnkHmBq564EZFn+kQq OHMWFQIhcq8vYD0Ntf2LLeWAYJSB/u73F5RtBwqiK5VupN/JZ8IK8SwF2pwWfeyDIGE5 g55Q== X-Gm-Message-State: ANoB5pmrns08X23hRMyvHAMWU46TKHQCynjDoVwIlQ4sZ4Vm2fXpNJ71 CwpFfbZVfZBZSaQvwTxK9MN8j8g3royojh9ZF+AfF5Dq8mmiU3jd44BIfAgAMCJebhGPs2e4TOQ tG+UJq74Ld/+UymqTACw= X-Received: by 2002:a17:90a:ab08:b0:219:aea9:4487 with SMTP id m8-20020a17090aab0800b00219aea94487mr15497851pjq.161.1670322458777; Tue, 06 Dec 2022 02:27:38 -0800 (PST) X-Google-Smtp-Source: AA0mqf7RBrjJkcPKkI3JKlcjJKbieFbgNn8Dgy1oH3qcEkw85JrqFMDD2bxs76k88W9MUf2iMEKlwH214cBs8Ns4yrM= X-Received: by 2002:a17:90a:ab08:b0:219:aea9:4487 with SMTP id m8-20020a17090aab0800b00219aea94487mr15497831pjq.161.1670322458539; Tue, 06 Dec 2022 02:27:38 -0800 (PST) MIME-Version: 1.0 References: <20221206101648.1361771-1-thomas@monjalon.net> In-Reply-To: <20221206101648.1361771-1-thomas@monjalon.net> From: David Marchand Date: Tue, 6 Dec 2022 11:27:27 +0100 Message-ID: Subject: Re: [PATCH] devtools: update Meson setup command To: Thomas Monjalon Cc: dev@dpdk.org, Aaron Conole , Michael Santana , Bruce Richardson X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="UTF-8" X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org On Tue, Dec 6, 2022 at 11:17 AM Thomas Monjalon wrote: > > The command "meson build" causes a deprecation warning with meson 0.64: > > WARNING: Running the setup command as `meson [options]` instead of > `meson setup [options]` is ambiguous and deprecated. > > Signed-off-by: Thomas Monjalon Reviewed-by: David Marchand -- David Marchand