MozillaFirefox/find-external-requires.sh
changeset 1031 4b419fce88dc
parent 1024 d14085eee2b2
parent 1030 cd02d400c081
child 1032 8220ea23b47d
--- a/MozillaFirefox/find-external-requires.sh	Sat Jan 20 21:27:34 2018 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,9 +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 )
-echo "$filelist" \
-    | /usr/lib/rpm/find-requires \
-    | grep -F -v "$provides" \
-    | sort -u