removed downloading libcec and disabled libcec by default before people go balistic
[vuplus_xbmc] / bootstrap
1 #!/bin/sh
2
3 set -e
4
5 autoreconf -vif
6 autoreconf -vif lib/libid3tag/libid3tag
7 autoreconf -vif xbmc/screensavers/rsxs-0.9
8 autoreconf -vif xbmc/visualizations/Goom/goom2k4-0
9 autoreconf -vif lib/libapetag
10 autoreconf -vif lib/cpluff
11 # order matters with libdvd and friends
12 [ -d lib/libdvd/libdvdcss ] && \
13   autoreconf -vif lib/libdvd/libdvdcss
14 autoreconf -vif lib/libdvd/libdvdread
15 autoreconf -vif lib/libdvd/libdvdnav
16
17 # Clean the generated files
18 find . -depth -type d -name "autom4te.cache" -exec rm -rf {} \;
19
20 echo "Please (re)run configure..."
21