b8e38785f8
PR: 136043 Submitted by: Ports Fury
10 lines
200 B
Bash
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
|