7328d212f1
- patch included libtools - use ports gmp now that our gmp is gone - make included scripts more readable
14 lines
278 B
Bash
Executable File
14 lines
278 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# 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 ./configure $*)
|
|
done
|
|
|