summaryrefslogtreecommitdiff
path: root/tools/testing/selftests/powerpc/syscalls
diff options
context:
space:
mode:
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>2023-01-27 16:57:42 +0300
committerMichael Ellerman <mpe@ellerman.id.au>2023-02-15 14:41:00 +0300
commit4f11410bf6da87defe8fd59b0413f0d9f71744da (patch)
tree5087cb216f75b8f3725acfa4e52172d1a76727dd /tools/testing/selftests/powerpc/syscalls
parent08273c9f619cb32fb041935724f576e607101f3b (diff)
downloadlinux-4f11410bf6da87defe8fd59b0413f0d9f71744da.tar.xz
selftests/powerpc: Fix incorrect kernel headers search path
Use $(KHDR_INCLUDES) as lookup path for kernel headers. This prevents building against kernel headers from the build environment in scenarios where kernel headers are installed into a specific output directory (O=...). Cc: stable@vger.kernel.org # v5.18+ Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> Acked-by: Shuah Khan <skhan@linuxfoundation.org> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://lore.kernel.org/r/20230127135755.79929-22-mathieu.desnoyers@efficios.com
Diffstat (limited to 'tools/testing/selftests/powerpc/syscalls')
-rw-r--r--tools/testing/selftests/powerpc/syscalls/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/powerpc/syscalls/Makefile b/tools/testing/selftests/powerpc/syscalls/Makefile
index 54ff5cfffc63..ee1740ddfb0c 100644
--- a/tools/testing/selftests/powerpc/syscalls/Makefile
+++ b/tools/testing/selftests/powerpc/syscalls/Makefile
@@ -1,7 +1,7 @@
# SPDX-License-Identifier: GPL-2.0-only
TEST_GEN_PROGS := ipc_unmuxed rtas_filter
-CFLAGS += -I../../../../../usr/include
+CFLAGS += $(KHDR_INCLUDES)
top_srcdir = ../../../../..
include ../../lib.mk