blob: c1676aeef24e0c2e13391e8a56d793f20d30c708 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh -e
# Check if hugin has been obtained:
if [ ! -d lrtp ] || [ ! -d libaudioin ]
then
echo "You are missing the lrtp and/or libaudioin submodule."
echo "Run"
echo " git submodule init"
echo " git submodule update"
echo "to obtain them."
exit 1
fi
# Now run autoreconf
${AUTORECONF:-autoreconf} -fiv
(cd lrtp; ./autogen.sh)
(cd libaudioin; ./autogen.sh)
|