diff options
author | Ned Deily <nad@acm.org> | 2014-05-22 22:27:01 (GMT) |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2014-05-22 22:27:01 (GMT) |
commit | fbb60d562caa99ead34664f5a27235d296bcba7e (patch) | |
tree | d93961299e9f5291ea4497cc81d87e1b754d48ef /Mac | |
parent | ac1bb817323ff5fd90033440879d02f01c77d55a (diff) | |
download | cpython-fbb60d562caa99ead34664f5a27235d296bcba7e.zip cpython-fbb60d562caa99ead34664f5a27235d296bcba7e.tar.gz cpython-fbb60d562caa99ead34664f5a27235d296bcba7e.tar.bz2 |
Issue #21383: OS X installer builds now use "make touch".
Diffstat (limited to 'Mac')
-rwxr-xr-x | Mac/BuildScript/build-installer.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py index a67a606..74c2746 100755 --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -985,6 +985,9 @@ def buildPython(): shellQuote(WORKDIR)[1:-1], shellQuote(WORKDIR)[1:-1])) + print("Running make touch") + runCommand("make touch") + print("Running make") runCommand("make") |