blob: 9a4e736d959f6e2aaf27ec0384270c958429f500 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
set -e
autoreconf -vif
autoreconf -vif lib/cpluff
# we must autoreconf libass as we don't know till later if it's used.
autoreconf -vif lib/libass
# order matters with libbdnav and friends
[ -d xbmc/cores/dvdplayer/Codecs/libdvd/libdvdcss ] && \
autoreconf -vif xbmc/cores/dvdplayer/Codecs/libdvd/libdvdcss
autoreconf -vif xbmc/cores/dvdplayer/Codecs/libdvd/libdvdread
autoreconf -vif xbmc/cores/dvdplayer/Codecs/libdvd/libdvdnav
echo "Please (re)run configure..."
|