diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-07-27 08:01:32 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-07-27 08:01:32 +0000 |
commit | d6a00ccbb2a66d0899396b60c2cb95689c443daa (patch) | |
tree | 342ad054ece9980022251633ce2f654daba2d4a2 /regress | |
parent | 6f443dd5c6dd84ff22feb590458c4c53b7c05486 (diff) |
limit this to the right architectures
Diffstat (limited to 'regress')
-rw-r--r-- | regress/sys/kern/nxstack-mprotect/Makefile | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/regress/sys/kern/nxstack-mprotect/Makefile b/regress/sys/kern/nxstack-mprotect/Makefile index 29f277470d5..ce55a4704a7 100644 --- a/regress/sys/kern/nxstack-mprotect/Makefile +++ b/regress/sys/kern/nxstack-mprotect/Makefile @@ -1,6 +1,15 @@ -# $OpenBSD: Makefile,v 1.1 2002/07/27 06:52:37 mickey Exp $ +# $OpenBSD: Makefile,v 1.2 2002/07/27 08:01:31 deraadt Exp $ + +.if ${MACHINE} == "sparc64" || ${MACHINE} == "sparc" || \ + ${MACHINE} == "alpha" || ${MACHINE} == "macppc" || \ + ${MACHINE} == "mvmeppc" || ${MACHINE} == "i386" || \ + ${MACHINE} == "hppa" PROG= nxstack-mprotect LDSTATIC= ${STATIC} +.else +REGRESSTARGETS= # this architecture has no test for this +.endif + .include <bsd.regress.mk> |