Bug 1444881 - Make |mach bootstrap| use the latest version of Oracle's JDK when bootstrapping Fennec on Gentoo; r?nalexander draft
authorGabriele Svelto <gsvelto@mozilla.com>
Mon, 12 Mar 2018 14:31:05 +0100
changeset 766207 24500cc3f95246289d81b1dd4e3b634d2f65bd30
parent 766013 a6f5fb18e6bcc9bffe4a0209a22d8a25510936be
push id102256
push usergsvelto@mozilla.com
push dateMon, 12 Mar 2018 13:50:16 +0000
reviewersnalexander
bugs1444881
milestone60.0a1
Bug 1444881 - Make |mach bootstrap| use the latest version of Oracle's JDK when bootstrapping Fennec on Gentoo; r?nalexander MozReview-Commit-ID: BnRJC95sSEr
python/mozboot/mozboot/gentoo.py
--- a/python/mozboot/mozboot/gentoo.py
+++ b/python/mozboot/mozboot/gentoo.py
@@ -57,17 +57,17 @@ class GentooBootstrapper(StyloInstall, B
                           '--header', cookie,
                           base_url + '/' + jdk_dir + '/' + jdk_file])
 
         # Install the Oracle JDK. We explicitly prompt the user to accept the
         # changes because this command might need to modify the portage
         # configuration files and doing so without user supervision is dangerous
         self.run_as_root(['emerge', '--noreplace', '--quiet',
                           '--autounmask-continue', '--ask',
-                          '=dev-java/oracle-jdk-bin-1.8.0.162'])
+                          '=dev-java/oracle-jdk-bin-1.8.0.162-r1'])
 
         from mozboot import android
         android.ensure_android('linux', artifact_mode=artifact_mode,
                                no_interactive=self.no_interactive)
 
     def suggest_mobile_android_mozconfig(self, artifact_mode=False):
         from mozboot import android
         android.suggest_mozconfig('linux', artifact_mode=artifact_mode)