Merge branch 'master' of git@github.com:xbmc/xbmc
[vuplus_xbmc] / bootstrap
1 #!/bin/sh
2
3 set -e
4
5 autoreconf -vif
6 autoreconf -vif lib/cpluff
7 # we must autoreconf libass as we don't know till later if it's used.
8 [ -d lib/libass ] && autoreconf -vif lib/libass
9 # order matters with libbdnav and friends
10 [ -d lib/libdvd/libdvdcss ] && \
11   autoreconf -vif lib/libdvd/libdvdcss
12 autoreconf -vif lib/libdvd/libdvdread
13 autoreconf -vif lib/libdvd/libdvdnav
14
15 # Clean the generated files
16 find . -depth -type d -name "autom4te.cache" -exec rm -rf {} \;
17
18 echo "Please (re)run configure..."
19