xulrunner/find-external-requires.sh
author Wolfgang Rosenauer <wr@rosenauer.org>
Wed, 14 Sep 2011 22:29:13 +0200
branchfirefox6
changeset 324 c6ab0c6a483b
parent 317 5d9ea1c5e50e
permissions -rw-r--r--
remove -gnome subpackage and fixup patchlist (build is working now w/o localization)

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