mirror of
https://github.com/void-linux/void-packages.git
synced 2025-08-03 11:22:56 +02:00
meld: fix for Python 3.8.
This commit is contained in:
parent
28503747d4
commit
30c47ec927
1 changed files with 11 additions and 0 deletions
11
srcpkgs/meld/patches/python3.8.patch
Normal file
11
srcpkgs/meld/patches/python3.8.patch
Normal file
|
@ -0,0 +1,11 @@
|
|||
--- meld/build_helpers.py.orig
|
||||
+++ meld/build_helpers.py
|
||||
@@ -379,7 +379,7 @@
|
||||
def finalize_options(self):
|
||||
special_cases = ('debian', 'ubuntu', 'linuxmint')
|
||||
if (platform.system() == 'Linux' and
|
||||
- platform.linux_distribution()[0].lower() in special_cases):
|
||||
+ False):
|
||||
# Maintain an explicit install-layout, but use deb by default
|
||||
specified_layout = getattr(self, 'install_layout', None)
|
||||
self.install_layout = specified_layout or 'deb'
|
Loading…
Add table
Reference in a new issue