mk: fix custom kernel directory name
authorHerakliusz Lipiec <herakliusz.lipiec@intel.com>
Fri, 19 Jul 2019 17:05:43 +0000 (18:05 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Mon, 22 Jul 2019 08:00:01 +0000 (10:00 +0200)
When building dpdk with different kernel headers by specifying
RTE_KERNELDIR igb_uio is compiled to directory with a name of the
version of kernel thats running on the system instead of the one that
dpdk is actually compiled against. Fixed by replacing hardcoded value
with value from RTE_KERNELDIR.

Fixes: 3967af352aeb ("mk: install kernel modules")
Cc: stable@dpdk.org
Signed-off-by: Herakliusz Lipiec <herakliusz.lipiec@intel.com>
Acked-by: Thomas Monjalon <thomas@monjalon.net>
mk/rte.sdkinstall.mk

index 5c4215c..32bed5d 100644 (file)
@@ -27,7 +27,7 @@ ifeq ($(RTE_EXEC_ENV),linuxapp)
 RTE_EXEC_ENV=linux
 endif
 ifeq ($(RTE_EXEC_ENV),linux)
-kerneldir   ?= /lib/modules/$(shell uname -r)/extra/dpdk
+kerneldir   ?= $(RTE_KERNELDIR:/build=/extra/dpdk)
 else
 kerneldir   ?= /boot/modules
 endif