#! sh
# for OS/2 -emx 
# This script reads filenames from STDIN and outputs any relevant provides
# information that needs to be included in the package.

filelist=$(grep -i "\\.dll" | sed 's@^.*/@@' )

for f in $filelist; do
	echo $f
done | sort -u
