aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/mconf.py
diff options
context:
space:
mode:
authorXavier Claessens <xavier.claessens@collabora.com>2018-05-13 10:36:58 -0400
committerNirbheek Chauhan <nirbheek.chauhan@gmail.com>2018-06-06 20:02:37 +0000
commitda29e48d137e5bc19046921aea9526906662f4cb (patch)
tree320431e5e517de0ea3c712d62e5afb29c79e4281 /mesonbuild/mconf.py
parent00414a326a344410392235941202bb922d704fb2 (diff)
downloadmeson-da29e48d137e5bc19046921aea9526906662f4cb.zip
meson-da29e48d137e5bc19046921aea9526906662f4cb.tar.gz
meson-da29e48d137e5bc19046921aea9526906662f4cb.tar.bz2
mconf: Set prefix first because other options depends on it
Diffstat (limited to 'mesonbuild/mconf.py')
-rw-r--r--mesonbuild/mconf.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/mesonbuild/mconf.py b/mesonbuild/mconf.py
index 0b33ba3..9932aa0 100644
--- a/mesonbuild/mconf.py
+++ b/mesonbuild/mconf.py
@@ -189,7 +189,7 @@ def run(args):
if not args:
args = [os.getcwd()]
options = buildparser().parse_args(args)
- coredata.filter_builtin_options(options, args)
+ coredata.parse_cmd_line_options(options, args)
if len(options.directory) > 1:
print('%s <build directory>' % args[0])
print('If you omit the build directory, the current directory is substituted.')
@@ -201,8 +201,8 @@ def run(args):
try:
c = Conf(builddir)
save = False
- if len(options.projectoptions) > 0:
- c.set_options(options.projectoptions)
+ if len(options.cmd_line_options) > 0:
+ c.set_options(options.cmd_line_options)
save = True
elif options.clearcache:
c.clear_cache()