CMake: Edit white space for consistency

This commit is contained in:
Lasse Collin 2024-06-24 22:42:01 +03:00
parent 114cba69db
commit 3c95c93bca
1 changed files with 12 additions and 12 deletions

View File

@ -1768,20 +1768,20 @@ if(NOT SANDBOX_FOUND AND XZ_SANDBOX MATCHES "^auto$|^landlock$")
# linux/landlock.h, but do not have the syscalls defined # linux/landlock.h, but do not have the syscalls defined
# in order to actually use Linux Landlock. # in order to actually use Linux Landlock.
check_c_source_compiles(" check_c_source_compiles("
#include <linux/landlock.h> #include <linux/landlock.h>
#include <sys/syscall.h> #include <sys/syscall.h>
#include <sys/prctl.h> #include <sys/prctl.h>
int main(void) int main(void)
{ {
(void)prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0); (void)prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0);
(void)SYS_landlock_create_ruleset; (void)SYS_landlock_create_ruleset;
(void)SYS_landlock_restrict_self; (void)SYS_landlock_restrict_self;
(void)LANDLOCK_CREATE_RULESET_VERSION; (void)LANDLOCK_CREATE_RULESET_VERSION;
return 0; return 0;
} }
" "
HAVE_LINUX_LANDLOCK) HAVE_LINUX_LANDLOCK)
if(HAVE_LINUX_LANDLOCK) if(HAVE_LINUX_LANDLOCK)
set(SANDBOX_COMPILE_DEFINITION "HAVE_LINUX_LANDLOCK") set(SANDBOX_COMPILE_DEFINITION "HAVE_LINUX_LANDLOCK")