summaryrefslogtreecommitdiff
path: root/editors/ted/files/configure
blob: 6f1d0881348e0092cc2a121c7f9b3c95f0506025 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/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