mirror of
https://github.com/NLnetLabs/unbound.git
synced 2026-02-16 09:08:01 -05:00
Nicer code that checks correctly for needed programs..
git-svn-id: file:///svn/unbound/trunk@14 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
1c2cc969eb
commit
1134565dec
1 changed files with 2 additions and 6 deletions
|
|
@ -7,16 +7,12 @@ cd testdata;
|
|||
for test in `ls *.tpkg`; do
|
||||
SKIP=0
|
||||
if echo $NEED_SPLINT | grep $test >/dev/null; then
|
||||
if which splint >/dev/null 2>&1; then
|
||||
:
|
||||
else
|
||||
if test ! -x "`which splint`"; then
|
||||
SKIP=1;
|
||||
fi
|
||||
fi
|
||||
if echo $NEED_DOXYGEN | grep $test >/dev/null; then
|
||||
if which doxygen >/dev/null 2>&1; then
|
||||
:
|
||||
else
|
||||
if test ! -x "`which doxygen`"; then
|
||||
SKIP=1;
|
||||
fi
|
||||
fi
|
||||
|
|
|
|||
Loading…
Reference in a new issue