diff options
author | 2001-09-17 08:07:22 +0000 | |
---|---|---|
committer | 2001-09-17 08:07:22 +0000 | |
commit | 13b69f0ac10106b64e57087dbb348ff03e974969 (patch) | |
tree | 7557eaee5fcfe99daf3f5a3063858fbadeaff789 | |
parent | Support for arm and sparc64 platforms. ok espie (diff) | |
download | wireguard-openbsd-13b69f0ac10106b64e57087dbb348ff03e974969.tar.xz wireguard-openbsd-13b69f0ac10106b64e57087dbb348ff03e974969.zip |
Scary interaction
-rw-r--r-- | regress/usr.bin/m4/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/regress/usr.bin/m4/Makefile b/regress/usr.bin/m4/Makefile index c6e4fe67e71..0af1456ae72 100644 --- a/regress/usr.bin/m4/Makefile +++ b/regress/usr.bin/m4/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.6 2001/09/16 21:09:19 espie Exp $ +# $OpenBSD: Makefile,v 1.7 2001/09/17 08:07:22 espie Exp $ # $NetBSD: Makefile,v 1.2 1999/02/13 02:54:33 lukem Exp $ NOMAN= @@ -9,7 +9,7 @@ M4=m4 CLEANFILES+= ff_after_dnl.m4 fibo.out -regress: test-ff_after_dnl test-m4wrap test-fibo test-patterns +regress: test-ff_after_dnl test-m4wrap test-fibo test-patterns trip test-ff_after_dnl: ff_after_dnl.m4 ${M4} ff_after_dnl.m4 | diff - ${.CURDIR}/ff_after_dnl.out @@ -29,6 +29,9 @@ fibo.out: test-fibo: fibo.out ${M4} -DN=${FIBOMAX} ${.CURDIR}/fibo.m4| diff - fibo.out -.PHONY: test-ff_after_dnl test-m4wrap test-patterns test-fibo +trip: + echo "undefine(\`errprint')"|MALLOC_OPTIONS=A ${M4} -Derrprint=a >/dev/null + +.PHONY: test-ff_after_dnl test-m4wrap test-patterns test-fibo trip .include <bsd.prog.mk> |