Files
ports/lang/tauthon/files/patch-Lib_distutils_command_build__scripts.py
T
Olivier Certner 4fd5885d1b lang/tauthon: Update to 2.8.5
PR:		271962
Reported by:	olivier.freebsd@free.fr (maintainer)
2023-06-14 13:58:15 +02:00

18 lines
599 B
Python

# Description: A non-invasive partial backport of the Python3 distutils behaviour.
# This allows Python's scripts to be properly suffixed (similar to Python 3.x) on
# installation.
# Submitted by: mva
--- Lib/distutils/command/build_scripts.py.orig 2023-02-04 10:09:53 UTC
+++ Lib/distutils/command/build_scripts.py
@@ -126,6 +126,9 @@ class build_scripts (Command):
file, oldmode, newmode)
os.chmod(file, newmode)
+ # XXX should we modify self.outfiles?
+ return outfiles
+
# copy_scripts ()
# class build_scripts