diff options
Diffstat (limited to 'python/servo/build_commands.py')
-rw-r--r-- | python/servo/build_commands.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/python/servo/build_commands.py b/python/servo/build_commands.py index dd63aff54f3..afed8dbc5c2 100644 --- a/python/servo/build_commands.py +++ b/python/servo/build_commands.py @@ -104,7 +104,13 @@ class MachCommands(CommandBase): ) # Do some additional things if the build succeeded - built_binary = self.get_binary_path(build_type, target=self.cross_compile_target, simpleservo=libsimpleservo) + built_binary = self.get_binary_path( + build_type, + target=self.cross_compile_target, + android=self.is_android_build, + simpleservo=libsimpleservo + ) + if status == 0: if self.is_android_build and not no_package: flavor = None |