summaryrefslogtreecommitdiff
path: root/find-external-requires
diff options
context:
space:
mode:
authorChristopher Aillon <caillon@redhat.com>2011-02-10 21:08:11 -0800
committerChristopher Aillon <caillon@redhat.com>2011-02-10 21:08:11 -0800
commit8dfddebb2007b36c34aa489afa5e7fc84261b472 (patch)
treef92aab2583c00200b3484eab5c4cf17207f58e25 /find-external-requires
parentUpdate gecko-{libs,devel} requires (diff)
downloadlibrewolf-fedora-ff-8dfddebb2007b36c34aa489afa5e7fc84261b472.tar.gz
librewolf-fedora-ff-8dfddebb2007b36c34aa489afa5e7fc84261b472.tar.bz2
librewolf-fedora-ff-8dfddebb2007b36c34aa489afa5e7fc84261b472.zip
find-external-requires isn't needed
since we build against xulrunner.
Diffstat (limited to 'find-external-requires')
-rwxr-xr-xfind-external-requires23
1 files changed, 0 insertions, 23 deletions
diff --git a/find-external-requires b/find-external-requires
deleted file mode 100755
index d79db1d..0000000
--- a/find-external-requires
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-
-# Finds requirements provided outside of the current file set
-
-filelist=`sed "s/[]['\"*?{}]/\\\\\&/g"`
-
-provides=`echo $filelist | /usr/lib/rpm/find-provides`
-
-{
-for f in $filelist ; do
- echo $f | /usr/lib/rpm/find-requires | while read req ; do
- found=0
- for p in $provides ; do
- if [ "$req" = "$p" ]; then
- found=1
- fi
- done
- if [ "$found" = "0" ]; then
- echo $req
- fi
- done
-done
-} | sort -u \ No newline at end of file
bgstack15