[Jython-checkins] jython: Remove mention of python27.dll that prevented installation on Linux.

jeff.allen jython-checkins at python.org
Tue Jan 8 01:18:14 EST 2019


https://hg.python.org/jython/rev/a8026585b3c2
changeset:   8215:a8026585b3c2
user:        Jeff Allen <ja.py at farowl.co.uk>
date:        Mon Jan 07 21:51:03 2019 +0000
summary:
  Remove mention of python27.dll that prevented installation on Linux.

jython.exe embeds its own CPython since #d638b2c5, so python27.dll was
removed, but we missed the mention in the Linux installer.

files:
  installer/src/java/org/python/util/install/StartScriptGenerator.java |  1 -
  1 files changed, 0 insertions(+), 1 deletions(-)


diff --git a/installer/src/java/org/python/util/install/StartScriptGenerator.java b/installer/src/java/org/python/util/install/StartScriptGenerator.java
--- a/installer/src/java/org/python/util/install/StartScriptGenerator.java
+++ b/installer/src/java/org/python/util/install/StartScriptGenerator.java
@@ -81,7 +81,6 @@
             }
             Files.delete(bindir.resolve("jython.py"));
             Files.delete(bindir.resolve("jython.exe"));
-            Files.delete(bindir.resolve("python27.dll"));
             Files.setPosixFilePermissions(bindir.resolve("jython"),
                     PosixFilePermissions.fromString("rwxr-xr-x")); // 0755
         }

-- 
Repository URL: https://hg.python.org/jython


More information about the Jython-checkins mailing list