We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 599638f + 2cb2a09 commit 110a8feCopy full SHA for 110a8fe
SConstruct
@@ -6,7 +6,8 @@ if sys.platform != 'darwin':
6
7
env = Environment(ENV = os.environ)
8
try:
9
- env.Tool('config', toolpath = [os.environ.get('CBANG_HOME'), './cbang'])
+ paths = [os.environ.get('CBANG_HOME'), os.environ.get('CBANG_CONFIG_HOME')]
10
+ env.Tool('config', toolpath = paths)
11
except Exception as e:
12
raise Exception('CBANG_HOME not set?\n' + str(e))
13
0 commit comments