kernel: Makefile: Remove stray backslash from path_umount grep regex (#103)

Signed-off-by: Tashfin Shakeer Rhythm <tashfinshakeerrhythm@gmail.com>
This commit is contained in:
Tashfin Shakeer Rhythm
2025-06-05 04:45:19 +06:00
committed by ShirkNeko
parent d52fc57fc4
commit 6225985f6f

View File

@@ -33,7 +33,7 @@ ccflags-y += -DKSU_VERSION=12800
endif
# Do checks before compile
ifeq ($(shell grep -q "int\s\+\path_umount" $(srctree)/fs/namespace.c; echo $$?),0)
ifeq ($(shell grep -q "int\s\+path_umount" $(srctree)/fs/namespace.c; echo $$?),0)
ccflags-y += -DKSU_HAS_PATH_UMOUNT
endif