diff options
author | Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | 2023-01-27 14:57:27 +0100 |
---|---|---|
committer | Shuah Khan <skhan@linuxfoundation.org> | 2023-02-13 17:09:44 +0100 |
commit | f80f09b59fdd45753dd80ac623981ad00ece4c2d (patch) | |
tree | 06784a85c49accf2f7ddac78258810b189baaa49 /tools/testing/selftests/dmabuf-heaps/Makefile | |
parent | selftests: core: Fix incorrect kernel headers search path (diff) | |
download | linux-f80f09b59fdd45753dd80ac623981ad00ece4c2d.tar.xz linux-f80f09b59fdd45753dd80ac623981ad00ece4c2d.zip |
selftests: dmabuf-heaps: 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/dmabuf-heaps/Makefile')
-rw-r--r-- | tools/testing/selftests/dmabuf-heaps/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/dmabuf-heaps/Makefile b/tools/testing/selftests/dmabuf-heaps/Makefile index 604b43ece15f..9e7e158d5fa3 100644 --- a/tools/testing/selftests/dmabuf-heaps/Makefile +++ b/tools/testing/selftests/dmabuf-heaps/Makefile @@ -1,5 +1,5 @@ # SPDX-License-Identifier: GPL-2.0 -CFLAGS += -static -O3 -Wl,-no-as-needed -Wall +CFLAGS += -static -O3 -Wl,-no-as-needed -Wall $(KHDR_INCLUDES) TEST_GEN_PROGS = dmabuf-heap |