From 64a525aad95b6a0d04c526d8253fe151aef866fb Mon Sep 17 00:00:00 2001 From: Ali Alnubani Date: Tue, 26 Nov 2019 15:38:36 +0000 Subject: [PATCH] eal: fix header file install with meson The header file 'rte_vfio.h' might be required by some external apps. This patch adds it to the list of common_headers so that it's installed by meson. Fixes: 610beca42ea4 ("build: remove library special cases") Cc: stable@dpdk.org Signed-off-by: Ali Alnubani Reviewed-by: Thomas Monjalon Acked-by: Bruce Richardson --- lib/librte_eal/common/meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/librte_eal/common/meson.build b/lib/librte_eal/common/meson.build index d6a149bec7..2b97715a20 100644 --- a/lib/librte_eal/common/meson.build +++ b/lib/librte_eal/common/meson.build @@ -86,7 +86,8 @@ common_headers = files( 'include/rte_tailq.h', 'include/rte_time.h', 'include/rte_uuid.h', - 'include/rte_version.h') + 'include/rte_version.h', + 'include/rte_vfio.h') # special case install the generic headers, since they go in a subdir generic_headers = files( -- 2.20.1