Add bootstrap.sh to run autoreconf in order rebuild aclocal and Makefile.in with recent version of automake

This commit is contained in:
Thom O'Connor 2016-03-19 14:15:05 -06:00
parent b9a2a676e6
commit 6c7b0a5ce9
2 changed files with 20 additions and 0 deletions

8
INSTALL Normal file
View File

@ -0,0 +1,8 @@
Basic install instructions:
git clone https://github.com/Tripwire/tripwire-open-source
cd tripwire-open-source
./bootstrap.sh
./configure
make
make install

12
bootstrap.sh Executable file
View File

@ -0,0 +1,12 @@
#!/bin/sh
if test -x "`which autoreconf`"; then
AUTORECONF="autoreconf -i"
exec $AUTORECONF
else
echo "autoreconf does not exist in $PATH - unable to bootstrap. Feel free to try running"
echo "./configure"
exit 1
fi
exit 0