Make sure we don't install twtest (the unit test binary) to /usr/local/sbin during a make install.
This commit is contained in:
parent
00fb3538ab
commit
fcd6c88ac1
|
@ -605,6 +605,12 @@ for i in $loosefiles; do
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
#Make extra sure we don't install the unit test binary to sbin
|
||||||
|
if [ -e "$TWBIN/twtest" ] ; then
|
||||||
|
rm -f "$TWBIN/twtest"
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
##=======================================================
|
##=======================================================
|
||||||
## Files are now present on user's system.
|
## Files are now present on user's system.
|
||||||
## Begin Tripwire configuration.
|
## Begin Tripwire configuration.
|
||||||
|
|
Loading…
Reference in New Issue