xulrunner/find-external-requires.sh
author Wolfgang Rosenauer <wr@rosenauer.org>
Wed, 18 Sep 2013 16:26:48 +0200
branchfirefox24
changeset 669 4b65b5cfd428
parent 325 f5966ab369fb
permissions -rw-r--r--
locale reordering

#!/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