Bug 1410203: Expose whether a build has comm-central as a topdir; r?gps,Fallen draft
authorTom Prince <mozilla@hocat.ca>
Thu, 19 Oct 2017 10:23:07 -0600
changeset 22882 15cfd64b8f8f45b829df2302216bdb7af04e0da6
parent 22881 195f3d2bfb40fd47a2a168013cd83c1a3eb94187
push id122
push userbmo:mozilla@hocat.ca
push dateThu, 19 Oct 2017 19:12:04 +0000
reviewersgps, Fallen
bugs1410203
Bug 1410203: Expose whether a build has comm-central as a topdir; r?gps,Fallen MozReview-Commit-ID: 1s4tUJ5IVl1
mail/moz.configure
--- a/mail/moz.configure
+++ b/mail/moz.configure
@@ -3,20 +3,21 @@
 # This Source Code Form is subject to the terms of the Mozilla Public
 # License, v. 2.0. If a copy of the MPL was not distributed with this
 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
 
 imply_option('MOZ_PLACES', True)
 
 
 @depends(application)
-def is_comm(app):
-    return app[0].startswith('comm/')
+def is_comm_topdir(app):
+    return not app[0].startswith('comm/')
 
+set_config('MOZ_IS_COMM_TOPDIR', is_comm_topdir)
 
-@depends(is_comm)
-def toolkit_configure(is_comm):
-    if is_comm:
+@depends(is_comm_topdir)
+def toolkit_configure(is_comm_topdir):
+    if is_comm_topdir:
+        return '../mozilla/toolkit/moz.configure'
+    else:
         return '../../toolkit/moz.configure'
-    else:
-        return '../mozilla/toolkit/moz.configure'
 
 include(toolkit_configure)