summaryrefslogtreecommitdiff
path: root/autogen.sh
blob: 01cd53aca6fee975ffddb051e927d95ddbebab0e (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 [ ! -f lrtp/autogen.sh ] || [ ! -f libaudioio/autogen.sh ]
then
		echo "You are missing the lrtp and/or libaudioio 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 libaudioio; ./autogen.sh)