From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 798F4A04DD for ; Tue, 10 Nov 2020 18:33:25 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 491BD2E8D; Tue, 10 Nov 2020 18:33:24 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [216.205.24.124]) by dpdk.org (Postfix) with ESMTP id 24C042B9D for ; Tue, 10 Nov 2020 18:33:22 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1605029600; 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=w7EQQKr+1uv3EzoRVQgTe4fgKlNhYCGWoYIQqZ3zR/4=; b=N7sUgorSt26BPK51Be6k38d+/3OwdNSlJuRcxZ6+1rhLJ210aU4oEmC6m58rXlfYRv2VbB Z+K7o9Qzu+wbzuYW6/SZyPNLsfqgm8m2E536xJCs6eFfHa+jKakdZmRdTzX3eyP6OTduy1 /OOFl5wUmoW6T45TRgW4VpAL1amRj7s= Received: from mail-ua1-f71.google.com (mail-ua1-f71.google.com [209.85.222.71]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-411-UzWGCAswO0CDnRFD7p6T1g-1; Tue, 10 Nov 2020 12:33:15 -0500 X-MC-Unique: UzWGCAswO0CDnRFD7p6T1g-1 Received: by mail-ua1-f71.google.com with SMTP id z4so1814574uaq.4 for ; Tue, 10 Nov 2020 09:33:15 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=w7EQQKr+1uv3EzoRVQgTe4fgKlNhYCGWoYIQqZ3zR/4=; b=fHpTdgPaFH6qChQNNkxM398kPjHySXu4PXwskykjWwDgBa8bPhRCZxPGs2Qeyinpm4 HopS3ZK2Ff5Fn9WPLNM8I43cu+6ki7Ohn9Aj5yNpp8T23wd+cslGCaj9yOVF0OnGfF3Q BgZVTHOx2V6csOp57rBRgmngpmpqEmRloCfdn2utN3Yy9qNIcGRIOUhNzNmutnQGd9Dm qEmm6vWbHob9r2A80PbApkqeUqx7dP/eaYyRZJur2bgjEh+ullifyYZVF73JTcuTyBuE 1wYLM7VGiYTvIFO6vTfcAKwM0d5jEFVZzgZ6AZ5eAyuUuJA5iuNKON1YDUT3LL93fIEw U/gg== X-Gm-Message-State: AOAM531CxFmO1NQWcniYGtmveQnoSTc7Hbb+8VognstiAkeEXo/30VNH LBAWKXK/TcYRZBMuYWFGNDWfe+IuDzCwQWr5fYA+O8V0Chk/tpIKUpKBMopg61tr6G7ANtLeh3O wCVAbaoUem5sJRE4RfTqepRc= X-Received: by 2002:a67:f8c5:: with SMTP id c5mr13075849vsp.18.1605029595123; Tue, 10 Nov 2020 09:33:15 -0800 (PST) X-Google-Smtp-Source: ABdhPJxxCW20diM8z4zPuBYEHyMfDQDN/z3x8Al5Pd/qbTvCiviPZ+PndJeLe9MuBcWeHITBj9zSJz04goG2X1DT/00= X-Received: by 2002:a67:f8c5:: with SMTP id c5mr13075830vsp.18.1605029594954; Tue, 10 Nov 2020 09:33:14 -0800 (PST) MIME-Version: 1.0 References: <20201110170809.1309043-1-bruce.richardson@intel.com> In-Reply-To: <20201110170809.1309043-1-bruce.richardson@intel.com> From: David Marchand Date: Tue, 10 Nov 2020 18:33:03 +0100 Message-ID: To: Bruce Richardson Cc: dev , dpdk stable , Thomas Monjalon Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=dmarchan@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-stable] [PATCH] install: fix flattening of examples directory X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" On Tue, Nov 10, 2020 at 6:08 PM Bruce Richardson wrote: > > By installing the examples one-by-one in a loop in the examples > meson.build file we effectively flatted out the structure of the examples flattened* > folder and omitted some common and shared subfolders that were never > directly built. Instead, we can remove the loop and just have the whole > "examples" folder installed as-is in a single statement, preserving its > directory structure, and thereby fixing the build of a number of the > examples. It seems wrong to provide all examples without looking at all_examples. We would provide examples that can't link against the available dpdk libraries. -- David Marchand