[grr] time to add some more items to bootstrap, seeing auto-configures during make
[vuplus_xbmc] / bootstrap
1 #!/bin/sh
2
3 set -e
4
5 autoreconf -vif
6 autoreconf -vif lib/libid3tag/libid3tag
7 audoreconf -vif xbmc/screensavers/rsxs-0.9
8 autoreconf -vif lib/libapetag
9 autoreconf -vif lib/cpluff
10 # order matters with libdvd and friends
11 [ -d lib/libdvd/libdvdcss ] && \
12   autoreconf -vif lib/libdvd/libdvdcss
13 autoreconf -vif lib/libdvd/libdvdread
14 autoreconf -vif lib/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