Wed, 24 Apr 2013 19:44:41 +0200
Fixed an issue in the install script related to the usage of a virtual environment on Mac.
(grafted from bc733920950055ae7dc32c95fd1004d40321b34b)
install.py | file | annotate | diff | comparison | revisions |
--- a/install.py Mon Apr 22 20:31:17 2013 +0200 +++ b/install.py Wed Apr 24 19:44:41 2013 +0200 @@ -225,12 +225,15 @@ # Mac OS X elif sys.platform == "darwin": + pyexec = "{0}/bin/pythonw3".format(sys.exec_prefix) + if not os.path.exists(pyexec): + pyexec = "{0}/bin/python3".format(sys.exec_prefix) wname = wfile wrapper = \ '''#!/bin/sh -exec "{0}/bin/pythonw3" "{1}/{2}.py" "$@" -'''.format(sys.exec_prefix, pydir, wfile) +exec "{0}" "{1}/{2}.py" "$@" +'''.format(pyexec, pydir, wfile) # *nix systems else: