freebsd-ports/editors/ted/files/configure
Martin Wilke b8e38785f8 - Update to 2.20
PR:		136043
Submitted by:	Ports Fury
2009-07-04 20:54:37 +00:00

10 lines
200 B
Bash

#!/bin/sh
dirs="Ted appFrame appUtil bitmap ind docBuf tedPackage"
for d in $dirs; do
(cd $d && echo -n "./configure $* in:" && pwd && ./configure $*)
if [ $? != 0 ]; then
exit $?
fi
done