From 13106b9ab5a945e365c1868f64d93f24cbe80fef Mon Sep 17 00:00:00 2001 From: Notselwyn <68616630+Notselwyn@users.noreply.github.com> Date: Wed, 11 Sep 2024 11:44:21 -0400 Subject: [PATCH] fix: changed include path order --- .../CVE-2024-1086_lts_mitigation/exploit/lts-6.1.72/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pocs/linux/kernelctf/CVE-2024-1086_lts_mitigation/exploit/lts-6.1.72/Makefile b/pocs/linux/kernelctf/CVE-2024-1086_lts_mitigation/exploit/lts-6.1.72/Makefile index cb2577d6..08b731f6 100644 --- a/pocs/linux/kernelctf/CVE-2024-1086_lts_mitigation/exploit/lts-6.1.72/Makefile +++ b/pocs/linux/kernelctf/CVE-2024-1086_lts_mitigation/exploit/lts-6.1.72/Makefile @@ -11,7 +11,7 @@ CC = musl-gcc # - ./include/linux-lts-6.1.72: linux v6.1.72 #CFLAGS = -I./include -I./include/linux-lts-6.1.72 -Wall -Wno-deprecated-declarations #CFLAGS = -Wall -Wno-deprecated-declarations -CFLAGS = -I/usr/include -I./include/linux-lts-6.1.72 -Wall -Wno-deprecated-declarations +CFLAGS = -I./include/linux-lts-6.1.72 -I/usr/include -Wall -Wno-deprecated-declarations # use custom object archives compiled with musl-gcc for compatibility. normal ones # are used with gcc and have _chk funcs which musl doesn't support