Remove unusable --android flag for mach bootstrap

`mach` can't do any bootstrapping for Android, so the flag is useless.
This commit is contained in:
Aneesh Agrawal 2017-01-13 16:40:38 -05:00
parent 2fb9a345d6
commit 5b8d783f4c
5 changed files with 4 additions and 23 deletions

View file

@ -29,14 +29,6 @@ class BaseBootstrapper(object):
raise NotImplementedError('%s must implement install_system_packages()' %
__name__)
def install_mobile_android_packages(self):
'''
Install packages required to build Servo for Android.
'''
raise NotImplementedError('Cannot bootstrap Servo for Android: '
'%s does not yet implement install_mobile_android_packages()'
% __name__)
def which(self, name):
"""Python implementation of which.