blob: 12b2dc1005be8cbb7f31a5b618da260fdb1d1b16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/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.
[ -d lib/libass ] && autoreconf -vif lib/libass
# order matters with libbdnav and friends
[ -d lib/libdvd/libdvdcss ] && \
autoreconf -vif lib/libdvd/libdvdcss
autoreconf -vif lib/libdvd/libdvdread
autoreconf -vif lib/libdvd/libdvdnav
# Clean the generated files
find . -depth -type d -name "autom4te.cache" -exec rm -rf {} \;
echo "Please (re)run configure..."
|