mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-06 20:23:39 +00:00
9 lines
117 B
Bash
9 lines
117 B
Bash
![]() |
# PaX-mark binaries.
|
||
|
paxmark() {
|
||
|
local flags="$1"
|
||
|
shift
|
||
|
|
||
|
paxctl -c "$@"
|
||
|
paxctl -zex -${flags} "$@"
|
||
|
}
|