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