Author: Philip Jenvey <[email protected]>
Branch: py3k
Changeset: r73526:86ac335daec2
Date: 2014-09-13 15:57 -0700
http://bitbucket.org/pypy/pypy/changeset/86ac335daec2/
Log: issue1796: default the packaged pypy binary/shared lib name to
'pypy3'
diff --git a/pypy/tool/release/package.py b/pypy/tool/release/package.py
--- a/pypy/tool/release/package.py
+++ b/pypy/tool/release/package.py
@@ -306,10 +306,10 @@
import imp
argparse = imp.load_source('argparse', 'lib-python/2.7/argparse.py')
if sys.platform == 'win32':
- pypy_exe = 'pypy.exe'
+ pypy_exe = 'pypy3.exe'
license_base = os.path.join(basedir, r'..\..\..\local') # as on
buildbot YMMV
else:
- pypy_exe = 'pypy'
+ pypy_exe = 'pypy3'
license_base = '/usr/share/doc'
parser = argparse.ArgumentParser()
args = list(args)
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit