mempool/dpaa2: install missing header with meson
authorHemant Agrawal <hemant.agrawal@nxp.com>
Fri, 15 May 2020 09:47:47 +0000 (15:17 +0530)
committerDavid Marchand <david.marchand@redhat.com>
Tue, 19 May 2020 13:49:53 +0000 (15:49 +0200)
rte_dpaa2_mempool.h header was missed to be added in meson.build
for header installation.

Fixes: 7ed359909556 ("mempool/dpaa2: add functions for CMDIF")
Cc: stable@dpdk.org
Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>
Acked-by: Ray Kinsella <mdr@ashroe.eu>
drivers/mempool/dpaa2/meson.build

index df299a0..c3f479a 100644 (file)
@@ -8,3 +8,5 @@ endif
 
 deps += ['bus_fslmc']
 sources = files('dpaa2_hw_mempool.c')
+
+install_headers('rte_dpaa2_mempool.h')