1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-09 06:51:44 +00:00
freebsd-ports/editors/ted/files/configure
Ion-Mihai Tetcu 954f2ce049 - Fix build with custom LOCALBASE
- make our configure script a little verbose

Reported by:	QATty
2009-06-08 13:02:12 +00:00

11 lines
200 B
Bash

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