openbsd-ports/security/nessus/plugins/patches/patch-plugins_make_world

24 lines
547 B
Plaintext
Raw Normal View History

$OpenBSD: patch-plugins_make_world,v 1.1.1.1 2005/05/16 16:03:04 sturm Exp $
--- plugins/make_world.orig Sat May 7 09:38:36 2005
+++ plugins/make_world Sat May 7 09:41:05 2005
@@ -11,18 +11,13 @@ case "$os" in
;;
esac
-for i in *;
-do if [ -d $i -a $i != CVS ]; then
- if [ "$i" != "3com_hub" ];
- then
+for i in hydra nessus_tcp_scanner nikto_wrapper nmap_tcp_connect nmap_wrapper; do
cd $i
${MAKE:-make} $MAKEFLAG $1
if [ $? -ne 0 ];then
BADPLUGINS="$BADPLUGINS $i"
fi
cd ..
- fi
-fi
done
if test -n "$BADPLUGINS"; then