]> git.ipfire.org Git - people/ms/ipfire-3.x.git/blobdiff - pakfire/patches/pakfire-provides-soname.patch
pakfire: Sync to upstream version.
[people/ms/ipfire-3.x.git] / pakfire / patches / pakfire-provides-soname.patch
diff --git a/pakfire/patches/pakfire-provides-soname.patch b/pakfire/patches/pakfire-provides-soname.patch
deleted file mode 100644 (file)
index 8cc8b61..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-commit cf4f218f42c2a43a520eac4f3a6251d557dcbe80
-Author: Michael Tremer <michael.tremer@ipfire.org>
-Date:   Tue Apr 17 17:36:52 2012 +0200
-
-    find-provides: Accept bogous soname.
-    
-    This is a kind of weird bug. Some libs are "versioned" by
-    using their SONAME for symbol maps. This caused trouble
-    because the SONAME was not added to the list of provides
-    which is now changed by this commit.
-
-diff --git a/tools/find-provides b/tools/find-provides
-index 2e138ba..06b3c47 100755
---- a/tools/find-provides
-+++ b/tools/find-provides
-@@ -69,7 +69,6 @@ for file in ${binary_files}; do
-               /Version definitions:/ { START=1; }
-               /^[0-9]/ && (START==1) { print $4; }
-               /^$/ { START=0; }' | \
--                grep -v ${soname} | \
-                 while read symbol ; do
-                     echo "${soname}(${symbol})$(${is_64} && echo ${mark64} | sed 's/()//')"
-                 done