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 66D7AA04DD; Tue, 10 Nov 2020 18:33:24 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id E5663F90; Tue, 10 Nov 2020 18:33:22 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [63.128.21.124]) by dpdk.org (Postfix) with ESMTP id C07EEF64 for ; Tue, 10 Nov 2020 18:33:19 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1605029598; 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=F8XllTHoeztXuht0c+qmjbuHiBVPpsXba7CaciP1uCaLyW54S8se7Touqh2yJiBmrcZY7d QHIiLPE9ixuLqx05+8uiD4xWC2xVwVy26m49qftGK96f2mgOsNSx4ObbuRpFqf8VIsO/+O PxO+yDIixxEaKJn+qtnjmiEpgWVwpxM= Received: from mail-vs1-f72.google.com (mail-vs1-f72.google.com [209.85.217.72]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-328-z04nqxYFMQW9w6huUo4Xkw-1; Tue, 10 Nov 2020 12:33:15 -0500 X-MC-Unique: z04nqxYFMQW9w6huUo4Xkw-1 Received: by mail-vs1-f72.google.com with SMTP id v8so153720vso.10 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=DgSjBUdmFWpdkYihbuZRaHkBPuxiWwLyXzvbPpw4kIl7fYuvjdJa4Ocp52REiDIAty 7i1lnESviHDXQ3g6AfvumOo8CrfJXYcaBvmF1Q8n7ssLnCLQYOp3roP88pzq29lWTI+x M+lFrFF/128GFvyaDA122l1fVs5uONd8JRuuz0psf3dvCyomzgJaEZ9GJEpMhvCmlbjO vchC5NfSUzCSIgpozH1nY7FHpdr6iVV988pbs5tpaBorxMOUijXKjJJViqHv1i9aIK0d 4GqmECH63X8mWKSTFstJp88D6xDsYcmbjuzsHVtaZr9jK5WC1ChU+c8k+O7V1NW1TjV9 FUAw== X-Gm-Message-State: AOAM532bzG4PT91LSJNYTIaw7B4e8h8RxKNoKHryrHHRsc75diA3A80v NvwE1rui/B9FhEX8HTlyzXp/y1Ry6rh2ViUdDYtpZAjKVh0Nb9NnEXvFpkev4UcurO6bA4yKoi0 6Q8nHiZzCOlPP2II0ihs= X-Received: by 2002:a67:f8c5:: with SMTP id c5mr13075847vsp.18.1605029595122; 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-dev] [dpdk-stable] [PATCH] install: fix flattening of examples directory X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 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