From 610644bb42e877e4bb4528e87d1986e1ba2fe5e3 Mon Sep 17 00:00:00 2001 From: Anssi Hannula Date: Mon, 10 Sep 2007 11:29:31 +0000 Subject: Ignore library dependencies of objects in /usr/lib(64)/gcj/, which are GCJ AOT compiled shared objects and are only useful when running the software in the package with gij (gcc java). If the user uses some other java VM, they do not need their dependencies satisfied. --- find-provides.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'find-provides.in') diff --git a/find-provides.in b/find-provides.in index d45d44a..e6646da 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" | egrep -v "^/lib/ld\.so|/usr/lib(64)?/gcj/" | egrep '(/usr(/X11R6)?)?/lib(64)?/.*\.so' | \ xargs file -L 2>/dev/null | grep "ELF.*shared object" | cut -d: -f1) pythonlist= tcllist= -- cgit v1.2.1