diff options
author | Ned Deily <nad@acm.org> | 2014-05-22 22:28:06 (GMT) |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2014-05-22 22:28:06 (GMT) |
commit | 729148b21762a639895e96a4e772ea2803540420 (patch) | |
tree | 9ac39faec2d1a625e5c71d97b44a81dafd1fa49f /Mac/BuildScript | |
parent | 93668f4459fea03b88abda0c86f1981f402b15fb (diff) | |
download | cpython-729148b21762a639895e96a4e772ea2803540420.zip cpython-729148b21762a639895e96a4e772ea2803540420.tar.gz cpython-729148b21762a639895e96a4e772ea2803540420.tar.bz2 |
Issue #21383: OS X installer builds now use "make touch".
Diffstat (limited to 'Mac/BuildScript')
-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") |