Bug 1463921 - Re-run js configure when js/src/old-configure changes. draft
authorChris Manchester <cmanchester@mozilla.com>
Wed, 23 May 2018 17:22:09 -0700
changeset 799148 7da755dbb4b5a09e1bbbfc7104183c365075cbe8
parent 796019 d90a5a4aab56b989e8780970ede900dd39916535
push id110937
push userbmo:cmanchester@mozilla.com
push dateThu, 24 May 2018 00:22:38 +0000
bugs1463921
milestone62.0a1
Bug 1463921 - Re-run js configure when js/src/old-configure changes. MozReview-Commit-ID: 2Rw4he9ZRpz
build/subconfigure.py
--- a/build/subconfigure.py
+++ b/build/subconfigure.py
@@ -281,17 +281,17 @@ def run(objdir):
         if os.path.isfile(f):
             contents.append(File(f))
 
     # Only run configure if one of the following is true:
     # - config.status doesn't exist
     # - config.status is older than configure
     # - the configure arguments changed
     # - the environment changed in a way that requires a cache clear.
-    configure = mozpath.join(data['srcdir'], 'configure')
+    configure = mozpath.join(data['srcdir'], 'old-configure')
     config_status_path = mozpath.join(objdir, 'config.status')
     skip_configure = True
     if not os.path.exists(config_status_path):
         skip_configure = False
         config_status = None
     else:
         config_status = File(config_status_path)
         if config_status.mtime < os.path.getmtime(configure) or \