backport 569648f2a3b8e094c33d102edd41397ca04b07be into dharma 10.1 (because git maste...
[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 xbmc/cores/dvdplayer/Codecs/libdvd/libdvdcss ] && \
11   autoreconf -vif xbmc/cores/dvdplayer/Codecs/libdvd/libdvdcss
12 autoreconf -vif xbmc/cores/dvdplayer/Codecs/libdvd/libdvdread
13 autoreconf -vif xbmc/cores/dvdplayer/Codecs/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