clean the bootstrap grabage
[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 autoreconf -vif lib/libass
9 autoreconf -vif xbmc/cores/dvdplayer/Codecs/libbdnav
10 # order matters with libbdnav and friends
11 [ -d xbmc/cores/dvdplayer/Codecs/libdvd/libdvdcss ] && \
12   autoreconf -vif xbmc/cores/dvdplayer/Codecs/libdvd/libdvdcss
13 autoreconf -vif xbmc/cores/dvdplayer/Codecs/libdvd/libdvdread
14 autoreconf -vif xbmc/cores/dvdplayer/Codecs/libdvd/libdvdnav
15
16 # Clean the generated files
17 find . -depth -type d -name "autom4te.cache" -exec rm -rf {} \;
18
19 echo "Please (re)run configure..."
20