Skip to content

Commit

Permalink
make: Revise security section comments in configure.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
bradleysepos committed Aug 22, 2019
1 parent b710fe5 commit a9a20e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions make/configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a9a20e0

Please sign in to comment.