#!/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)