Cristobal Soto <[EMAIL PROTECTED]> writes:
> i ran this as root from the top of the nessus packages. Its not terribly
> smart (heh)... but maybe someone find this useful.
I run this:
-----------------------------------------------------------------------------
#!/bin/sh -e
P=$1
D=$PWD
for I in nessus-libraries libnasl nessus-core nessus-plugins
do
cd "$D/$I"
if [ ! -z "$P" ]; then
./configure --prefix=$P --enable-debug --disable-rhlst --disable-cipher
fi
make -k
sudo make install
case $I in
*lib*) sudo /sbin/ldconfig;;
esac
done
-----------------------------------------------------------------------------