#!/bin/sh
# $OpenBSD: configure,v 1.6 2002/05/25 10:38:58 reinhard Exp $
#
#   configure wrapper script for nessus
#
#   Original by dug song <dugsong@monkey.org>
#   Enhanced by Matt Behrens <matt@openbsd.org>
#

for dir in @@NESSUS_DIRS@@  ; do
    echo ">> Configuring $dir"
    (cd $dir; PATH=@@WRKSRC@@:$PATH NESSUSCONFIG=@@WRKSRC@@nessus-config NASLCONFIG=@@WRKSRC@@nasl-config ./configure $*)
done

