Use a boot script instead of having autoreconf recurse
[ghc-hetmet.git] / boot
1 #!/bin/sh
2
3 set -e
4
5 autoreconf
6
7 for lib in libraries/*; do
8     if test -e $lib/configure.ac
9     then
10         cd $lib
11         autoreconf
12         cd ../..
13     fi
14 done
15