From: David Marchand Date: Thu, 22 Oct 2020 07:50:38 +0000 (+0200) Subject: bpf: use helper to install headers X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=a5c369d4860fcb56c2768d48b06d8236ac25cc99;p=dpdk.git bpf: use helper to install headers Libraries can use the headers variable to install headers. Signed-off-by: David Marchand Acked-by: Bruce Richardson --- diff --git a/lib/librte_bpf/meson.build b/lib/librte_bpf/meson.build index 6070898cb6..48460e9505 100644 --- a/lib/librte_bpf/meson.build +++ b/lib/librte_bpf/meson.build @@ -13,9 +13,9 @@ elif dpdk_conf.has('RTE_ARCH_ARM64') sources += files('bpf_jit_arm64.c') endif -install_headers('bpf_def.h', - 'rte_bpf.h', - 'rte_bpf_ethdev.h') +headers = files('bpf_def.h', + 'rte_bpf.h', + 'rte_bpf_ethdev.h') deps += ['mbuf', 'net', 'ethdev']