From 57360a751f965b0ecd9ec11bcdb443de9193416e Mon Sep 17 00:00:00 2001 From: "Liguros - Gitlab CI/CD [feature/flatten]" Date: Sat, 26 Sep 2020 00:34:21 +0000 Subject: Updating liguros repo --- .../files/wxpython-2.8-no-preservatives-added.patch | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 dev-python/wxpython/files/wxpython-2.8-no-preservatives-added.patch (limited to 'dev-python/wxpython/files/wxpython-2.8-no-preservatives-added.patch') diff --git a/dev-python/wxpython/files/wxpython-2.8-no-preservatives-added.patch b/dev-python/wxpython/files/wxpython-2.8-no-preservatives-added.patch deleted file mode 100644 index 5e4221d51506..000000000000 --- a/dev-python/wxpython/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 - -- cgit v1.3.1