summaryrefslogtreecommitdiff
path: root/boot
blob: aa906266f6b819cbe03aff91c56e0b0e8bdc035d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

set -e

autoreconf

for lib in libraries/*; do
    if test -e $lib/configure.ac
    then
        cd $lib
        autoreconf
        cd ../..
    fi
done