]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Remove check for git binary in Mac installer build
authorNed Deily <nad@python.org>
Sat, 17 Jun 2017 01:00:49 +0000 (21:00 -0400)
committerNed Deily <nad@python.org>
Sat, 17 Jun 2017 06:58:07 +0000 (02:58 -0400)
Mac/BuildScript/build-installer.py

index e17299affba11c9f3e7ea7fee68f92866d8e1206..1fff052e2489b2085dd0a8cccf72d6f3e83faf61 100755 (executable)
@@ -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 git and a third-party version of
+requires an installed 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), git, and for the documentation
+(2.5 is needed for Python parser updates) 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,8 @@ 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 git and to sphinx-build.
-    # You may have to create links in /usr/bin for them.
-    runCommand('git --version')
+    # Ensure we have access to sphinx-build.
+    # You may have to create a link in /usr/bin for it.
     runCommand('sphinx-build --version')
 
 def parseOptions(args=None):