Bug 1328940 - mozboot: Install hardened cc for python. r?froydnj draft
authorRalph Giles <giles@mozilla.com>
Thu, 05 Jan 2017 10:47:44 -0800
changeset 456517 9a009af599e8ced591f43f7f670610083bc7e36d
parent 456417 b548da4e16f067e5b69349376e37b2db97983cf7
child 541256 fd6b1cff5e53f7e4513e475fdd900eb8ece07d80
push id40529
push userbmo:giles@thaumas.net
push dateThu, 05 Jan 2017 21:53:43 +0000
reviewersfroydnj
bugs1328940
milestone53.0a1
Bug 1328940 - mozboot: Install hardened cc for python. r?froydnj Work around missing redhat-hardened-cc1 when building psutil_linux on Fedora by installing the redhat-rpm-config package. This fixed build warnings with several mach commands, and errors with others like `./mach mochitest` and `./mach install` for fennec builds. MozReview-Commit-ID: G9jn4abUEtp
python/mozboot/mozboot/centosfedora.py
--- a/python/mozboot/mozboot/centosfedora.py
+++ b/python/mozboot/mozboot/centosfedora.py
@@ -61,16 +61,17 @@ class CentOSFedoraBootstrapper(BaseBoots
 
         elif self.distro == 'Fedora':
             self.group_packages += [
                 'C Development Tools and Libraries',
             ]
 
             self.packages += [
                 'python2-devel',
+                'redhat-rpm-config',
             ]
 
             self.browser_packages += [
                 'gcc-c++',
                 'python-dbus',
             ]
 
             self.mobile_android_packages += [