diff options
Diffstat (limited to 'find-requires.in')
-rwxr-xr-x | find-requires.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/find-requires.in b/find-requires.in index 0750da7..b091797 100755 --- a/find-requires.in +++ b/find-requires.in @@ -41,7 +41,7 @@ filelist=`sed "s/[]['\"*?{}]/\\\\\&/g"` exelist=`echo "$filelist" | xargs -r file | egrep -v ":.* (commands|script) " | \ grep ":.*ELF.*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` + egrep ":.* (commands|script)" | cut -d: -f1` liblist=`echo "$filelist" | egrep -v "/usr/lib(64)?/gcj/" | xargs -r file | \ grep ":.*shared object" | cut -d : -f1` ocamllist=`echo "$filelist" | xargs -r file | \ |