Skip to content

Commit

Permalink
By default install to /usr/local on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
gavv committed Dec 23, 2022
1 parent 9a2ac15 commit 2017450
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@ supported_sanitizers = [
]

# default installation prefix
default_prefix = '/usr'
if platform.system() == 'Darwin':
default_prefix = '/usr/local'
else:
default_prefix = '/usr'

AddOption('--prefix',
dest='prefix',
Expand Down

0 comments on commit 2017450

Please sign in to comment.