Bug 1529431 - Remove --with-android-sdk from mozconfig example by ./mach bootstrap. r=nalexander

After landing bug 1515004, it is unnecessary to use `--with-android-sdk` when
developer uses default path of Android SDK by `./mach bootstrap`.

So let's remove `--with-android-sdk` from mozconfig example using
`./mach bootstrap`.

Differential Revision: https://phabricator.services.mozilla.com/D20601

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Makoto Kato 2019-02-26 17:41:38 +00:00
parent 09acaeaaa2
commit 503bff14c9

View File

@ -60,8 +60,7 @@ ac_add_options --enable-application=mobile/android
# ac_add_options --target=x86_64
{extra_lines}
# With the following Android SDK and NDK:
ac_add_options --with-android-sdk="{sdk_path}"
# With the following Android NDK:
ac_add_options --with-android-ndk="{ndk_path}"
# With the following compiler toolchain:
@ -81,9 +80,6 @@ ac_add_options --target=arm-linux-androideabi
ac_add_options --enable-artifact-builds
{extra_lines}
# With the following Android SDK:
ac_add_options --with-android-sdk="{sdk_path}"
# Write build artifacts to:
mk_add_options MOZ_OBJDIR=./objdir-frontend
<<<