Add bootstrap.sh to run autoreconf in order rebuild aclocal and Makefile.in with recent version of automake
This commit is contained in:
parent
b9a2a676e6
commit
6c7b0a5ce9
|
@ -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
|
|
@ -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
|
Loading…
Reference in New Issue