MozillaFirefox/find-external-requires.sh
branchfirefox58
changeset 1030 cd02d400c081
parent 1029 725d6acf23b5
child 1031 4b419fce88dc
--- a/MozillaFirefox/find-external-requires.sh	Wed Feb 07 19:42:16 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