diff options
author | Kunal Mohan <kunalmohan99@gmail.com> | 2020-07-02 20:15:13 +0530 |
---|---|---|
committer | Kunal Mohan <kunalmohan99@gmail.com> | 2020-07-02 21:04:05 +0530 |
commit | c0df7e0a9a64e38b60cf5d494ac2bfe47bb670af (patch) | |
tree | 241c63d9e38972996c14f4735ec8f32d242ebb60 /python/servo | |
parent | 8713954a533da7f4e7ec0877b9385908596b5230 (diff) | |
download | servo-c0df7e0a9a64e38b60cf5d494ac2bfe47bb670af.tar.gz servo-c0df7e0a9a64e38b60cf5d494ac2bfe47bb670af.zip |
Fix Gstreamer undefined symbol error
Diffstat (limited to 'python/servo')
-rw-r--r-- | python/servo/post_build_commands.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/python/servo/post_build_commands.py b/python/servo/post_build_commands.py index 98fadae15c7..2e69c6ca917 100644 --- a/python/servo/post_build_commands.py +++ b/python/servo/post_build_commands.py @@ -79,6 +79,7 @@ class PostBuildCommands(CommandBase): help="Command-line arguments to be passed through to Servo") def run(self, params, release=False, dev=False, android=None, debug=False, debugger=None, headless=False, software=False, bin=None, emulator=False, usb=False, nightly=None): + self.set_run_env(android is not None) env = self.build_env() env["RUST_BACKTRACE"] = "1" |