File tree Expand file tree Collapse file tree
src/uucore/src/lib/features Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -219,6 +219,7 @@ pub fn set_selinux_security_context(
219219/// Err(SeLinuxError::ContextRetrievalFailure(e)) => println!("Failed to retrieve the security context: {e}"),
220220/// Err(SeLinuxError::ContextConversionFailure(ctx, e)) => println!("Failed to convert context '{ctx}': {e}"),
221221/// Err(SeLinuxError::ContextSetFailure(ctx, e)) => println!("Failed to set context '{ctx}': {e}"),
222+ /// Err(SeLinuxError::OperationNotSupported) => println!("Operation not supported"),
222223/// }
223224/// ```
224225pub fn get_selinux_security_context (
Original file line number Diff line number Diff line change 9191export CARGOFLAGS # tell to make
9292if [ " ${SELINUX_ENABLED} " = 1 ]; then
9393 # Build few utils for SELinux for faster build. MULTICALL=y fails...
94- " ${MAKE} " UTILS=" cat chcon chmod cp cut dd echo env groups id install ln ls mkdir mkfifo mknod mktemp mv printf realpath rm rmdir runcon seq stat test touch tr true uname wc whoami"
94+ make UTILS=" cat chcon chmod cp cut dd echo env groups id install ln ls mkdir mkfifo mknod mktemp mv printf realpath rm rmdir runcon seq stat test touch tr true uname wc whoami"
9595else
9696 # Use MULTICALL=y for faster build
9797 make MULTICALL=y SKIP_UTILS=more
You can’t perform that action at this time.
0 commit comments