CMakeLists.txt: don't enforce setuid bit
All checks were successful
Alpine 3.20 Success
OpenBSD 7.5 Success

This commit is contained in:
Přemysl Eric Janouch 2024-11-25 06:12:20 +01:00
parent 8096a1b2c9
commit 5b64c639ac
Signed by: p
GPG Key ID: A0420B94F92B9493

View File

@ -96,6 +96,7 @@ endif ()
# These should be accessible by users, but need to touch system devices. # These should be accessible by users, but need to touch system devices.
# Use the setuid bit, for simplicity. # Use the setuid bit, for simplicity.
set (SETUID "SETUID" CACHE STRING "Set this empty on permission issues")
foreach (target brightness input-switch) foreach (target brightness input-switch)
if (${target} IN_LIST targets) if (${target} IN_LIST targets)
list (REMOVE_ITEM targets ${target}) list (REMOVE_ITEM targets ${target})
@ -104,7 +105,7 @@ foreach (target brightness input-switch)
OWNER_WRITE OWNER_READ OWNER_EXECUTE OWNER_WRITE OWNER_READ OWNER_EXECUTE
GROUP_READ GROUP_EXECUTE GROUP_READ GROUP_EXECUTE
WORLD_READ WORLD_EXECUTE WORLD_READ WORLD_EXECUTE
SETUID) ${SETUID})
endif () endif ()
endforeach () endforeach ()