From: Hemant Agrawal Date: Fri, 15 May 2020 09:47:47 +0000 (+0530) Subject: mempool/dpaa2: install missing header with meson X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=a95e588c07518356725ca1f30189262e3d1b1593;p=dpdk.git mempool/dpaa2: install missing header with meson 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 Acked-by: Ray Kinsella --- diff --git a/drivers/mempool/dpaa2/meson.build b/drivers/mempool/dpaa2/meson.build index df299a0456..c3f479afa1 100644 --- a/drivers/mempool/dpaa2/meson.build +++ b/drivers/mempool/dpaa2/meson.build @@ -8,3 +8,5 @@ endif deps += ['bus_fslmc'] sources = files('dpaa2_hw_mempool.c') + +install_headers('rte_dpaa2_mempool.h')