diff options
author | Olli Hauer <ohauer@FreeBSD.org> | 2010-08-12 20:51:33 +0000 |
---|---|---|
committer | Olli Hauer <ohauer@FreeBSD.org> | 2010-08-12 20:51:33 +0000 |
commit | 168dd5ff9cfdf0c91507e5d8bdde0187a4e80b24 (patch) | |
tree | 1cc8a463f53da77a02012bcf4c778cdca8212403 /security/dradis/files/patch-verify.sh | |
parent | - force commit to correct PR number (diff) |
PR: 146455
Submitted by: Dax Labrador <semprix _at_ bsdmail.org>
Approved by: glarkin (mentor)
dradis is an open source framework to enable effective information sharing.
dradis is a self-contained web application that provides a centralised
repository of information to keep track of what has been done so far,
and what is still ahead.
Features include:
* Easy report generation.
* Support for attachments.
* Integration with existing systems and
tools through server plugins.
* Platform independent.
WWW: http://dradisframework.org/
Notes
Notes:
svn path=/head/; revision=259148
Diffstat (limited to 'security/dradis/files/patch-verify.sh')
-rw-r--r-- | security/dradis/files/patch-verify.sh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/security/dradis/files/patch-verify.sh b/security/dradis/files/patch-verify.sh new file mode 100644 index 000000000000..5148e4cb58dd --- /dev/null +++ b/security/dradis/files/patch-verify.sh @@ -0,0 +1,17 @@ +--- ./verify.sh.orig 2010-05-18 19:15:11.000000000 +0200 ++++ ./verify.sh 2010-08-10 21:50:20.000000000 +0200 +@@ -1,4 +1,4 @@ +-#!/bin/bash ++#!/bin/sh + # + # dradis Framework dependencies verification script + # +@@ -121,7 +121,7 @@ + + # verify SQLite3 libraries + echo -n "Looking for SQLite3 libraries... " +-ruby -rmkmf -e "if (have_header( 'sqlite3.h' ) && have_library( 'sqlite3', 'sqlite3_open' )) then exit 0 else exit 1 end" > /dev/null ++ruby -C /usr/local/include -rmkmf -e "if (have_header( 'sqlite3.h' ) && have_library( 'sqlite3', 'sqlite3_open' )) then exit 0 else exit 1 end" > /dev/null + if [ $? -eq 0 ]; then + echo "found." + else |