#!/usr/bin/tcsh -e

cd build-trees

foreach i (`ls -d *`)
	echo "$i"
	cd "$i"
	perl Makefile.PL INSTALLDIRS=vendor
	cd ..
end
