mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-09 06:51:44 +00:00
954f2ce049
- make our configure script a little verbose Reported by: QATty
11 lines
200 B
Bash
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
|