summaryrefslogtreecommitdiff
path: root/dev-python/wxpython2/files/wxpython-2.8-no-preservatives-added.patch
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2021-01-31 17:22:00 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2021-01-31 17:22:00 +0000
commit0b2cc5b601d59959a241af1cef4b0926f0833020 (patch)
treea6fcbc71c3c58ddf0522ceb47ae7a83166f04b52 /dev-python/wxpython2/files/wxpython-2.8-no-preservatives-added.patch
parent865e7c7d85735ed07592f402d89b7569a6685387 (diff)
downloadbaldeagleos-repo-0b2cc5b601d59959a241af1cef4b0926f0833020.tar.gz
baldeagleos-repo-0b2cc5b601d59959a241af1cef4b0926f0833020.tar.xz
baldeagleos-repo-0b2cc5b601d59959a241af1cef4b0926f0833020.zip
Updating liguros repo
Diffstat (limited to 'dev-python/wxpython2/files/wxpython-2.8-no-preservatives-added.patch')
-rw-r--r--dev-python/wxpython2/files/wxpython-2.8-no-preservatives-added.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/dev-python/wxpython2/files/wxpython-2.8-no-preservatives-added.patch b/dev-python/wxpython2/files/wxpython-2.8-no-preservatives-added.patch
deleted file mode 100644
index 5e4221d51506..000000000000
--- a/dev-python/wxpython2/files/wxpython-2.8-no-preservatives-added.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-Portage preserve-libs removes the linker name (.so) of a library but leaves
-the soname (.so.4) and realname (.so.4.0) installed. findLib searches for
-mywxlibname.* and returns true if anything is found. Disaster ensues.
-
-
---- a/wxPython/config.py
-+++ b/wxPython/config.py
-@@ -612,7 +612,7 @@ def findLib(name, libdirs):
- dirs = libdirs[:]
- for d in dirs:
- p = os.path.join(d, name)
-- if glob.glob(p+'*') != []:
-+ if glob.glob(p+'*.so') != []:
- return True
- return False
-