blob: 35edb8be436a3d41c20dda0bdbf461cbcc1c5a49 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 | #!/bin/sh -e
# Check if hugin has been obtained:
if [ ! -f hugin/hugin.c ]
then
		echo "You are missing the hugin submodule."
		echo "Run"
		echo " git submodule init"
		echo " git submodule update"
		echo "to obtain it."
		exit 1
fi
# Now run autoreconf
${AUTORECONF:-autoreconf} -fiv --warnings=no-unsupported
 |