mozilla-xulrunner192/find-external-requires.sh
author Wolfgang Rosenauer <wr@rosenauer.org>
Fri, 09 Apr 2010 20:51:09 +0200
branchmozilla-1.9.2
changeset 64 7bb1edb78dd5
parent 4 523b1d92948c
child 278 436c76ab5f25
permissions -rw-r--r--
Update to 1.9.2.4/3.6.4pre to prepare the bigger Lorentz merge

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