diff options
author | Bradley Sepos <[email protected]> | 2019-08-21 22:45:08 -0400 |
---|---|---|
committer | Bradley Sepos <[email protected]> | 2019-08-21 22:47:06 -0400 |
commit | a9a20e08f734cbfb16f971a539840c112e236740 (patch) | |
tree | 886498725e6aa60ac5e90e33745a9def036f52aa | |
parent | b710fe5a98c1b30f80d8c3a2d88eaa50139739c2 (diff) |
make: Revise security section comments in configure.py.
-rw-r--r-- | make/configure.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/make/configure.py b/make/configure.py index 39876fe5c..aaa6bcb14 100644 --- a/make/configure.py +++ b/make/configure.py @@ -1366,9 +1366,9 @@ def createCLI( cross = None ): ## add security options grp = cli.add_argument_group( 'Security Options' ) - h = IfHost( 'enable the Sandbox capability (currently macOS-only)', '*-*-darwin*', none=argparse.SUPPRESS).value + grp.add_argument( '--harden', dest="enable_harden", default=False, action='store_true', help='harden app to protect against buffer overflows' ) + h = IfHost( 'sandbox app to limit host system access (macOS only)', '*-*-darwin*', none=argparse.SUPPRESS).value grp.add_argument( '--sandbox', dest="enable_sandbox", default=False, action='store_true', help=(( '%s' %h ) if h != argparse.SUPPRESS else h) ) - grp.add_argument( '--hardening', dest="enable_harden", default=False, action='store_true', help='enable buffer overflow protection' ) cli.add_argument_group( grp ) ## add launch options |