[v7,08/13] mempool/dpaa2: fix to add the include file

Message ID 20200515050831.22834-9-hemant.agrawal@nxp.com (mailing list archive)
State Superseded, archived
Headers
Series NXP DPAAx: move internal symbols to INTERNAL |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/Intel-compilation fail Compilation issues

Commit Message

Hemant Agrawal May 15, 2020, 5:08 a.m. UTC
  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>
---
 drivers/mempool/dpaa2/meson.build | 2 ++
 1 file changed, 2 insertions(+)
  

Patch

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')