diff options
author | tnn <tnn@pkgsrc.org> | 2008-04-26 22:06:27 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2008-04-26 22:06:27 +0000 |
commit | 896194fdf1829fb906e7c98b4f7d2a83d118934a (patch) | |
tree | b51e6e0e63779426ffa98fb4a373f39b282f1e7e /devel/bmake | |
parent | f7c0145c22500b351a2103e3b1a5c045f0f8db35 (diff) | |
download | pkgsrc-896194fdf1829fb906e7c98b4f7d2a83d118934a.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/bmake')
-rw-r--r-- | devel/bmake/files/Makefile.in | 8 |
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 |