summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile.inc16
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1
index 4593536..a9f6c0e 100644
--- a/Makefile.inc1
+++ b/Makefile.inc1
@@ -1199,11 +1199,11 @@ packagekernel:
# Run test suite on installed world.
#
checkworld: .PHONY
- @if [ ! -x ${LOCALBASE}/bin/kyua ]; then \
+ @if [ ! -x "${LOCALBASE}/bin/kyua" ]; then \
echo "You need kyua (devel/kyua) to run the test suite." | /usr/bin/fmt; \
exit 1; \
fi
- ${_+_}${LOCALBASE}/bin/kyua test -k ${TESTSBASE}/Kyuafile
+ ${_+_}PATH="$$PATH:${LOCALBASE}/bin" kyua test -k ${TESTSBASE}/Kyuafile
#
#
@@ -1212,7 +1212,7 @@ checkworld: .PHONY
# Build the API documentation with doxygen
#
doxygen: .PHONY
- @if [ ! -x ${LOCALBASE}/bin/doxygen ]; then \
+ @if [ ! -x "${LOCALBASE}/bin/doxygen" ]; then \
echo "You need doxygen (devel/doxygen) to generate the API documentation of the kernel." | /usr/bin/fmt; \
exit 1; \
fi
OpenPOWER on IntegriCloud