[Python-checkins] devinabox: Install to /tmp/cpython so people can test installation issues.
brett.cannon
python-checkins at python.org
Tue Jan 24 20:01:59 CET 2012
http://hg.python.org/devinabox/rev/d3bc278f0471
changeset: 39:d3bc278f0471
user: Brett Cannon <brett at python.org>
date: Tue Jan 24 14:01:54 2012 -0500
summary:
Install to /tmp/cpython so people can test installation issues.
files:
build_cpython.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/build_cpython.py b/build_cpython.py
--- a/build_cpython.py
+++ b/build_cpython.py
@@ -36,7 +36,7 @@
if os.path.isfile('Makefile'):
print('Makefile already exists; skipping ./configure')
else:
- subprocess.check_call(['./configure', '--prefix=/dev/null',
+ subprocess.check_call(['./configure', '--prefix=/tmp/cpython',
'--with-pydebug'])
make_cmd = ['make', '-s', '-j', str(multiprocessing.cpu_count())]
subprocess.call(make_cmd)
--
Repository URL: http://hg.python.org/devinabox
More information about the Python-checkins
mailing list