examples: fix flattening directory layout on install
authorBruce Richardson <bruce.richardson@intel.com>
Thu, 12 Nov 2020 09:41:39 +0000 (09:41 +0000)
committerThomas Monjalon <thomas@monjalon.net>
Thu, 12 Nov 2020 18:33:06 +0000 (19:33 +0100)
By installing the examples one-by-one in a loop in the examples
meson.build file we effectively flattened out the structure of the examples
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.

Fixes: 2daf565f91b5 ("examples: install as part of ninja install")
Cc: stable@dpdk.org
Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
examples/meson.build
meson.build

index f179955..46ec809 100644 (file)
@@ -47,13 +47,6 @@ all_examples = [
        'vm_power_manager/guest_cli',
        'vmdq', 'vmdq_dcb',
 ]
-# install all example code on install - irrespective of whether the example in
-# question is to be built as part of this build or not.
-foreach ex:all_examples
-       install_subdir(ex,
-                       install_dir: get_option('datadir') + '/dpdk/examples',
-                       exclude_files: 'meson.build')
-endforeach
 
 if get_option('examples') == ''
        subdir_done()
index 61d9a4f..45d974c 100644 (file)
@@ -59,6 +59,9 @@ subdir('doc')
 # build any examples explicitly requested - useful for developers - and
 # install any example code into the appropriate install path
 subdir('examples')
+install_subdir('examples',
+       install_dir: get_option('datadir') + '/dpdk',
+       exclude_files: 'meson.build')
 
 # build kernel modules if enabled
 if get_option('enable_kmods')