#!/bin/sh
for i in /usr/bin/rpmbuild-helper-*; do
	if [ -x $i ]; then
		echo launching `basename $i`
		$i
	fi
done
