diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2006-05-10 09:19:54 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2006-05-10 09:19:54 +0000 |
commit | 5f21c24c28a338b83f9ebf8234f0d65b817b1dd8 (patch) | |
tree | 4cd944d6b8563668b7b945e8df10674caa73a983 /find-provides.in | |
parent | bc4d39c4e47f4708b4a561adedb1522e474dd61b (diff) | |
download | rpm-setup-5f21c24c28a338b83f9ebf8234f0d65b817b1dd8.tar rpm-setup-5f21c24c28a338b83f9ebf8234f0d65b817b1dd8.tar.gz rpm-setup-5f21c24c28a338b83f9ebf8234f0d65b817b1dd8.tar.bz2 rpm-setup-5f21c24c28a338b83f9ebf8234f0d65b817b1dd8.tar.xz rpm-setup-5f21c24c28a338b83f9ebf8234f0d65b817b1dd8.zip |
Revert recent changes to computation of provides/requires w.r.t .so files that
are not in standard paths.
Diffstat (limited to 'find-provides.in')
-rwxr-xr-x | find-provides.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/find-provides.in b/find-provides.in index 428896c..8f32dad 100755 --- a/find-provides.in +++ b/find-provides.in @@ -5,7 +5,7 @@ filelist=`sed "s/['\"]/\\\&/g"` -solist=$(echo "$filelist" | grep -v "^/lib/ld\.so" | egrep '(/usr(/X11R6)?)?/lib(64)?/[^/]+\.so' | \ +solist=$(echo "$filelist" | grep -v "^/lib/ld\.so" | egrep '(/usr(/X11R6)?)?/lib(64)?/.*\.so' | \ xargs file -L 2>/dev/null | grep "ELF.*shared object" | cut -d: -f1) pythonlist= tcllist= |