summaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authortnn <tnn>2008-04-26 22:06:27 +0000
committertnn <tnn>2008-04-26 22:06:27 +0000
commitc024f0a6e0f123a547f2868c87ddbd05d02395bf (patch)
treeb51e6e0e63779426ffa98fb4a373f39b282f1e7e /devel
parent5447b1b39d68d04d76cc5b56a691d9aea8b56423 (diff)
downloadpkgsrc-c024f0a6e0f123a547f2868c87ddbd05d02395bf.tar.gz
Disable bmake regression tests on SunOS and IRIX. Stopgap fix for:
PR pkg/38397 PR pkg/38450 PR pkg/38221
Diffstat (limited to 'devel')
-rw-r--r--devel/bmake/files/Makefile.in8
1 files changed, 6 insertions, 2 deletions
diff --git a/devel/bmake/files/Makefile.in b/devel/bmake/files/Makefile.in
index 93d2a04f2f9..8c20b4f8d3a 100644
--- a/devel/bmake/files/Makefile.in
+++ b/devel/bmake/files/Makefile.in
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile.in,v 1.7 2008/03/11 17:20:05 joerg Exp $
+# $NetBSD: Makefile.in,v 1.8 2008/04/26 22:06:27 tnn Exp $
# @(#)Makefile 5.2 (Berkeley) 12/28/90
-# $Id: Makefile.in,v 1.7 2008/03/11 17:20:05 joerg Exp $
+# $Id: Makefile.in,v 1.8 2008/04/26 22:06:27 tnn Exp $
PROG= bmake
SRCS= arch.c buf.c compat.c cond.c dir.c for.c hash.c job.c main.c \
@@ -133,4 +133,8 @@ DPADD+=${LIBUTIL}
# A simple unit-test driver to help catch regressions
accept test:
+.if ${OS} != "SunOS" && ${OS} != "IRIX"
cd ${.CURDIR}/unit-tests && ${.MAKE:S,^./,${.CURDIR}/,} TEST_MAKE=${TEST_MAKE:U${.OBJDIR}/${PROG:T}} ${.TARGET}
+.else
+ true
+.endif