diff options
author | Emilio Cobos Álvarez <ecoal95@gmail.com> | 2016-11-12 21:35:31 +0100 |
---|---|---|
committer | Emilio Cobos Álvarez <ecoal95@gmail.com> | 2016-11-12 23:25:37 +0100 |
commit | 157c1674ed11be6ea6bd66a94eb58db536ceced7 (patch) | |
tree | c963a98e8780aab5364886d15656caabe1d1fc79 /python/servo/post_build_commands.py | |
parent | 5746a942c6fb7ab033751b70e2005f0d1b044e0d (diff) | |
download | servo-157c1674ed11be6ea6bd66a94eb58db536ceced7.tar.gz servo-157c1674ed11be6ea6bd66a94eb58db536ceced7.zip |
python: Make --debugger imply --debug
Diffstat (limited to 'python/servo/post_build_commands.py')
-rw-r--r-- | python/servo/post_build_commands.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/python/servo/post_build_commands.py b/python/servo/post_build_commands.py index 0dc5bc498bd..78e1a230ed5 100644 --- a/python/servo/post_build_commands.py +++ b/python/servo/post_build_commands.py @@ -59,6 +59,10 @@ class PostBuildCommands(CommandBase): env = self.build_env() env["RUST_BACKTRACE"] = "1" + # Make --debugger imply --debug + if debugger: + debug = True + if android is None: android = self.config["build"]["android"] |