#!/bin/sh -e

cd build-trees

for i in `ls -d *`; do
	echo "$i"
	cd "$i"
	perl Makefile.PL INSTALLDIRS=vendor
	cd ..
done
