[pvr] configure and build pvr add-ons if the tree is found in /pvr-addons, so these...
[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 autoreconf -vif lib/gtest
17
18 if [ -f pvr-addons/Makefile.am ]; then
19   autoreconf -vif pvr-addons
20 fi
21
22 # Clean the generated files
23 find . -depth -type d -name "autom4te.cache" -exec rm -rf {} \;
24
25 echo "Please (re)run configure..."
26