Browse Source

Python 3.4.1

INADA Naoki 11 years ago
parent
commit
0c62a16cb5
1 changed files with 4 additions and 4 deletions
  1. 4 4
      toolset/setup/linux/installer.py

+ 4 - 4
toolset/setup/linux/installer.py

@@ -365,13 +365,13 @@ class Installer:
     self.__run_command("make install", cwd="Python-2.7.6")
     self.__run_command("make install", cwd="Python-2.7.6")
 
 
     # CPython 3.4.1
     # CPython 3.4.1
-    f = "Python-3.4.1rc1.tar.xz"
+    f = "Python-3.4.1.tar.xz"
     if not os.path.exists(f):
     if not os.path.exists(f):
       self.__download("https://www.python.org/ftp/python/3.4.1/" + f)
       self.__download("https://www.python.org/ftp/python/3.4.1/" + f)
     self.__run_command("tar xf " + f)
     self.__run_command("tar xf " + f)
-    self.__run_command("./configure --prefix=$HOME/FrameworkBenchmarks/installs/py3 --disable-shared", cwd="Python-3.4.1rc1")
-    self.__run_command("make -j4", cwd="Python-3.4.1rc1")
-    self.__run_command("make install", cwd="Python-3.4.1rc1")
+    self.__run_command("./configure --prefix=$HOME/FrameworkBenchmarks/installs/py3 --disable-shared", cwd="Python-3.4.1")
+    self.__run_command("make -j4", cwd="Python-3.4.1")
+    self.__run_command("make install", cwd="Python-3.4.1")
 
 
     if not os.path.exists("get-pip.py"):
     if not os.path.exists("get-pip.py"):
       self.__download("https://bootstrap.pypa.io/get-pip.py")
       self.__download("https://bootstrap.pypa.io/get-pip.py")