From: Junxiao Shi Date: Mon, 27 Jan 2020 21:38:00 +0000 (-0700) Subject: bpf: fix headers install with meson X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=0e8d1ea327d4bd45fd24948be45dcc6716473753;p=dpdk.git bpf: fix headers install with meson Previously, when librte_bpf is built with meson+ninja, its headers such as bpf_def is not installed to the system. This commit fixes this problem. Fixes: 94972f35a02e ("bpf: add BPF loading and execution framework") Cc: stable@dpdk.org Signed-off-by: Junxiao Shi Acked-by: Bruce Richardson --- diff --git a/lib/librte_bpf/meson.build b/lib/librte_bpf/meson.build index 13fc02db38..52cfaf9ac2 100644 --- a/lib/librte_bpf/meson.build +++ b/lib/librte_bpf/meson.build @@ -14,7 +14,7 @@ elif dpdk_conf.has('RTE_ARCH_ARM64') sources += files('bpf_jit_arm64.c') endif -install_headers = files('bpf_def.h', +install_headers('bpf_def.h', 'rte_bpf.h', 'rte_bpf_ethdev.h')