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-requires.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'find-requires.in') diff --git a/find-requires.in b/find-requires.in index ec2f6a3..0baceea 100755 --- a/find-requires.in +++ b/find-requires.in @@ -44,7 +44,7 @@ exelist=`echo "$filelist" | xargs -r file | egrep -v ":.* (commands|script) " | grep ":.*executable" | cut -d: -f1` scriptlist=`echo "$filelist" | grep -v /usr/doc | grep -v /usr/share/doc | xargs -r file | \ egrep ":.* (commands|script) " | cut -d: -f1` -liblist=`echo "$filelist" | xargs -r file | \ +liblist=`echo "$filelist" | egrep -v "/usr/lib(64?)/gcj/" | xargs -r file | \ grep ":.*shared object" | cut -d : -f1` ocamllist=`echo "$filelist" | xargs -r file | \ grep ":.*Objective caml interface file" | cut -d : -f1` -- cgit v1.2.1