From 11491404365ba925bb36935a9f7a14c1afe003cc Mon Sep 17 00:00:00 2001 From: Arfrever Frehtes Taifersar Arahesis Date: Tue, 27 Nov 2012 00:44:17 +0100 Subject: Disable workaround for Jython scripts on Linux systems. --HG-- branch : distribute extra : rebase_source : 289980b084c335029d93732feb8e02da94472795 --- setuptools/command/easy_install.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'setuptools/command/easy_install.py') diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index 337532bc..cb911173 100755 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -1788,6 +1788,11 @@ def chmod(path, mode): def fix_jython_executable(executable, options): if sys.platform.startswith('java') and is_sh(executable): + # Workaround for Jython is not needed on Linux systems. + import java + if java.lang.System.getProperty("os.name") == "Linux": + return executable + # Workaround Jython's sys.executable being a .sh (an invalid # shebang line interpreter) if options: -- cgit v1.2.1