From bd99bc8e65cb2d0ed2a474c14c7d288933434c0d Mon Sep 17 00:00:00 2001 From: Leonid Pliushch Date: Sun, 19 Jan 2020 16:39:41 +0200 Subject: [PATCH] Revert "python: remove no longer needed patch" distutils-command-build.py.patch is still needed... This reverts commit cb4b29825b2adb2e3e43dfdb4507d78fd4858ad0. --- packages/python/distutils-command-build.py.patch | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 packages/python/distutils-command-build.py.patch diff --git a/packages/python/distutils-command-build.py.patch b/packages/python/distutils-command-build.py.patch new file mode 100644 index 0000000000..c9cd42dc16 --- /dev/null +++ b/packages/python/distutils-command-build.py.patch @@ -0,0 +1,11 @@ +--- ./Lib/distutils/command/build.py.orig 2019-11-19 23:19:08.878782120 +0000 ++++ ./Lib/distutils/command/build.py 2019-11-19 23:19:18.410915201 +0000 +@@ -118,7 +118,7 @@ + + if self.executable is None and sys.executable: + self.executable = os.path.normpath(sys.executable) +- ++ self.parallel = 1 + if isinstance(self.parallel, str): + try: + self.parallel = int(self.parallel)