mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-26 03:39:53 +01:00
Obtain the default prefix from the wscript file if provided
This commit is contained in:
parent
f748a01907
commit
a3b59a5c02
@ -125,7 +125,7 @@ class OptionsContext(Context.Context):
|
||||
gr.add_option('-o', '--out', action='store', default='', help='build dir for the project', dest='out')
|
||||
gr.add_option('-t', '--top', action='store', default='', help='src dir for the project', dest='top')
|
||||
|
||||
default_prefix = os.environ.get('PREFIX')
|
||||
default_prefix = getattr(Context.g_module, 'default_prefix', os.environ.get('PREFIX'))
|
||||
if not default_prefix:
|
||||
if platform == 'win32':
|
||||
d = tempfile.gettempdir()
|
||||
|
@ -110,6 +110,7 @@ Configure.ConfigurationContext.sub_config = Configure.ConfigurationContext.recur
|
||||
Configure.ConfigurationContext.check_tool = Configure.ConfigurationContext.load
|
||||
Configure.conftest = Configure.conf
|
||||
Configure.ConfigurationError = Errors.ConfigurationError
|
||||
Utils.WafError = Errors.WafError
|
||||
|
||||
Options.OptionsContext.sub_options = Options.OptionsContext.recurse
|
||||
Options.OptionsContext.tool_options = Context.Context.load
|
||||
|
Loading…
Reference in New Issue
Block a user