diff options
author | Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | 2023-01-27 08:57:25 -0500 |
---|---|---|
committer | Shuah Khan <skhan@linuxfoundation.org> | 2023-01-30 15:04:52 -0700 |
commit | 145df2fdc38f24b3e52e4c2a59b02d874a074fbd (patch) | |
tree | 658f0bc1b34515c049fd7e31d66227786261cd48 /tools/testing/selftests/core | |
parent | 612cf4d283414a5ee2733db6608d917deb45fa46 (diff) | |
download | lwn-145df2fdc38f24b3e52e4c2a59b02d874a074fbd.tar.gz lwn-145df2fdc38f24b3e52e4c2a59b02d874a074fbd.zip |
selftests: core: 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=...).
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Cc: Shuah Khan <shuah@kernel.org>
Cc: linux-kselftest@vger.kernel.org
Cc: Ingo Molnar <mingo@redhat.com>
Cc: <stable@vger.kernel.org> # 5.18+
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Diffstat (limited to 'tools/testing/selftests/core')
-rw-r--r-- | tools/testing/selftests/core/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/core/Makefile b/tools/testing/selftests/core/Makefile index f6f2d6f473c6..ce262d097269 100644 --- a/tools/testing/selftests/core/Makefile +++ b/tools/testing/selftests/core/Makefile @@ -1,5 +1,5 @@ # SPDX-License-Identifier: GPL-2.0-only -CFLAGS += -g -I../../../../usr/include/ +CFLAGS += -g $(KHDR_INCLUDES) TEST_GEN_PROGS := close_range_test |