On Sun, Jul 04, 2004 at 02:05:25PM -0400, Karl Berry wrote: > test -f Makefile && make clean > which is better, isn't it? > > It will fail (and stop the build) when Makefile does not exist. Maybe > you want test ! -f Makefile || make clean? Why does the build stop? Is there some automatic "set -e" somewhere? Thomas