summaryrefslogtreecommitdiff
path: root/Mac
diff options
context:
space:
mode:
authorNed Deily <nad@python.org>2017-03-04 02:16:13 -0500
committerGitHub <noreply@github.com>2017-03-04 02:16:13 -0500
commit7cd9b22e98a5b7a99a7539500ea946a7a58e1c8d (patch)
treec4e5e658b8fbaafb250e3961d59663291d904b60 /Mac
parent7030ca65de0507332a6af1c76bc720f8cdcae981 (diff)
downloadcpython-git-7cd9b22e98a5b7a99a7539500ea946a7a58e1c8d.tar.gz
bpo-29550: Temporarily skip "make touch" in Mac installer build. (#456)
Diffstat (limited to 'Mac')
-rwxr-xr-xMac/BuildScript/build-installer.py13
1 files changed, 7 insertions, 6 deletions
diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py
index 8dfd092d08..5649911c24 100755
--- a/Mac/BuildScript/build-installer.py
+++ b/Mac/BuildScript/build-installer.py
@@ -13,7 +13,7 @@ sphinx-build and the current versions of Sphinx now require at least
Python 2.6.
In addition to what is supplied with OS X 10.5+ and Xcode 3+, the script
-requires an installed version of hg and a third-party version of
+requires an installed version of git and a third-party version of
Tcl/Tk 8.4 (for OS X 10.4 and 10.5 deployment targets) or Tcl/TK 8.5
(for 10.6 or later) installed in /Library/Frameworks. When installed,
the Python built by this script will attempt to dynamically link first to
@@ -23,7 +23,7 @@ installing the most recent ActiveTcl 8.4 or 8.5 version.
32-bit-only installer builds are still possible on OS X 10.4 with Xcode 2.5
and the installation of additional components, such as a newer Python
-(2.5 is needed for Python parser updates), hg, and for the documentation
+(2.5 is needed for Python parser updates), git, and for the documentation
build either svn (pre-3.4.1) or sphinx-build (3.4.1 and later).
Usage: see USAGE variable in the script.
@@ -635,9 +635,9 @@ def checkEnvironment():
base_path = base_path + ':' + OLD_DEVELOPER_TOOLS
os.environ['PATH'] = base_path
print("Setting default PATH: %s"%(os.environ['PATH']))
- # Ensure ws have access to hg and to sphinx-build.
+ # Ensure ws have access to git and to sphinx-build.
# You may have to create links in /usr/bin for them.
- runCommand('hg --version')
+ runCommand('git --version')
runCommand('sphinx-build --version')
def parseOptions(args=None):
@@ -1142,8 +1142,9 @@ def buildPython():
shellQuote(WORKDIR)[1:-1],
shellQuote(WORKDIR)[1:-1]))
- print("Running make touch")
- runCommand("make touch")
+ # bpo-29550: avoid using make touch until it is fixed for git
+ # print("Running make touch")
+ # runCommand("make touch")
print("Running make")
runCommand("make")