summaryrefslogtreecommitdiff
path: root/java
diff options
context:
space:
mode:
authorMikhail Teterin <mi@FreeBSD.org>2006-10-20 12:49:45 +0000
committerMikhail Teterin <mi@FreeBSD.org>2006-10-20 12:49:45 +0000
commit82c9819848c4c38f85ebeec117aa55d5583f1aee (patch)
tree9e50ca8b72fa9d239d8e5ebeef3b881bb6d4b0d7 /java
parentFix a bug in rp2gen utility which segfaults on 64 bit architectures (diff)
Fix the test-target to, actually, succeed, when the tests
succeed... Approved by: portmgr (erwin)
Notes
Notes: svn path=/head/; revision=175432
Diffstat (limited to 'java')
-rw-r--r--java/berkeley-db/Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/java/berkeley-db/Makefile b/java/berkeley-db/Makefile
index 2623c4391c29..222c8c8f840a 100644
--- a/java/berkeley-db/Makefile
+++ b/java/berkeley-db/Makefile
@@ -36,12 +36,13 @@ test:
#
# Running the vendor-provided self-tests. This may take a while
#
- @cd ${BUILD_WRKSRC} && \
- ${MAKE_ENV} ${ANT} ${MAKE_ARGS} ${.TARGET} || \
+ if ! (cd ${BUILD_WRKSRC} ; ${MAKE_ENV} ${ANT} ${MAKE_ARGS} ${.TARGET}) ; \
+ then \
${ECHO_MSG} Please, review test failures and consider \
reporting them via \
- http://forums.oracle.com/forums/forum.jspa?forumID=273 \
- && ${FALSE}
+ http://forums.oracle.com/forums/forum.jspa?forumID=273 ; \
+ ${FALSE} ; \
+ fi
.include <bsd.port.pre.mk>