summaryrefslogtreecommitdiff
path: root/sci-misc/mendeleydesktop/files/mendeleydesktop-1.17.8-libdir.patch
diff options
context:
space:
mode:
Diffstat (limited to 'sci-misc/mendeleydesktop/files/mendeleydesktop-1.17.8-libdir.patch')
-rw-r--r--sci-misc/mendeleydesktop/files/mendeleydesktop-1.17.8-libdir.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/sci-misc/mendeleydesktop/files/mendeleydesktop-1.17.8-libdir.patch b/sci-misc/mendeleydesktop/files/mendeleydesktop-1.17.8-libdir.patch
deleted file mode 100644
index 67ba57fca05f..000000000000
--- a/sci-misc/mendeleydesktop/files/mendeleydesktop-1.17.8-libdir.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-Patch to find libstdc++.
-
-https://bugs.funtoo.org/browse/FL-3519
---- a/bin/mendeleydesktop
-+++ b/bin/mendeleydesktop
-@@ -29,6 +29,13 @@ def library_paths():
- paths.append("/usr/lib/x86_64-linux-gnu")
- paths.append("/usr/lib/i386-linux-gnu")
-
-+ gcc_libpath = subprocess.Popen(
-+ '/usr/bin/gcc-config -L', shell=True, stdout=subprocess.PIPE,
-+ ).stdout.read().decode('utf-8').replace('\n', '').split(':')
-+ for path in gcc_libpath:
-+ if len(path) > 0:
-+ paths.append(path)
-+
- return paths
-
- def library_version_from_path(lib_path):