diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2009-09-24 19:53:48 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2009-09-24 19:53:48 +0000 |
commit | a356134ea75111af3926f5ec0be07351bbbae429 (patch) | |
tree | 586bb02d2a9736b5f4c76a68361153396ac97b72 /lib/libarch/arm | |
parent | 84cfd9154233cc66ef7c6136843d5b8a67315292 (diff) |
Test for MACHINE_ARCH to decide whether to build stuff in libarch/arm, instead
of an incomplete MACHINE list.
Diffstat (limited to 'lib/libarch/arm')
-rw-r--r-- | lib/libarch/arm/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libarch/arm/Makefile b/lib/libarch/arm/Makefile index c806965490e..fb28913ac4f 100644 --- a/lib/libarch/arm/Makefile +++ b/lib/libarch/arm/Makefile @@ -1,9 +1,9 @@ -# $OpenBSD: Makefile,v 1.5 2009/09/09 12:10:34 marex Exp $ +# $OpenBSD: Makefile,v 1.6 2009/09/24 19:53:47 miod Exp $ MAN+= arm_sync_icache.2 arm_drain_writebuf.2 MANSUBDIR=armish zaurus -.if ${MACHINE} == "armish" || ${MACHINE} == "zaurus" || ${MACHINE} == "palm" +.if ${MACHINE_ARCH} == "arm" NOPIC= SRCS+= arm_sync_icache.c arm_drain_writebuf.c .include <bsd.lib.mk> |