From e75704e87fdb7478a3dae630bffe5f60dc029dcb Mon Sep 17 00:00:00 2001 From: Nick Alcock Date: Tue, 30 May 2017 15:07:18 +0100 Subject: [PATCH] dtrace: fix compilation with O= Separate objdir compilation was broken because we were looking for autoconf.h in the wrong place. Fix it by looking in the same place as everything else in scripts/ does. Signed-off-by: Nick Alcock Acked-by: Kris Van Hees Orabug: 26167475 --- scripts/kmodsdt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/kmodsdt.c b/scripts/kmodsdt.c index f2364c3310f9..ff9977a03e42 100644 --- a/scripts/kmodsdt.c +++ b/scripts/kmodsdt.c @@ -3,7 +3,7 @@ * Use is subject to license terms. */ -#include +#include "../include/generated/autoconf.h" #define ELF_TARGET_ALL #include -- 2.50.1