From a9a20e08f734cbfb16f971a539840c112e236740 Mon Sep 17 00:00:00 2001 From: Bradley Sepos Date: Wed, 21 Aug 2019 22:45:08 -0400 Subject: make: Revise security section comments in configure.py. --- make/configure.py | 4 ++-- 1 file 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 -- cgit v1.2.3