aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnssi Hannula <anssi@mandriva.org>2007-09-14 15:54:14 +0000
committerAnssi Hannula <anssi@mandriva.org>2007-09-14 15:54:14 +0000
commitb81c37c2b61bc23f18e6163c924bc6820920a224 (patch)
tree7bec4aed5c0ee2a314cce8b7be8e07c72f434ffd
parent82f3276ab2328fa7895dd3f69f0e8de94c195203 (diff)
downloadrpm-setup-b81c37c2b61bc23f18e6163c924bc6820920a224.tar
rpm-setup-b81c37c2b61bc23f18e6163c924bc6820920a224.tar.gz
rpm-setup-b81c37c2b61bc23f18e6163c924bc6820920a224.tar.bz2
rpm-setup-b81c37c2b61bc23f18e6163c924bc6820920a224.tar.xz
rpm-setup-b81c37c2b61bc23f18e6163c924bc6820920a224.zip
Fix GCJ AOT directory regexp in find-requires.in.
-rwxr-xr-xfind-requires.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/find-requires.in b/find-requires.in
index 2509be9..8d86350 100755
--- a/find-requires.in
+++ b/find-requires.in
@@ -42,7 +42,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" | egrep -v "/usr/lib(64?)/gcj/" | 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`