diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2010-02-03 20:49:02 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2010-02-03 20:49:02 +0000 |
commit | a0067f51183d8b472112a095c7c0d32145ff98b3 (patch) | |
tree | 96321fd1bd5ffaea0d4f16723ebb5a9cc4a139e9 /lib/libarch | |
parent | 7dfb23e53684ac495a4cf9a6a5188a1f91d5885a (diff) |
Use MACHINE_CPU instead of MACHINE_ARCH to pick the correct machine dependent
files or directories when applicable.
The inspiration and name of MACHINE_CPU come from NetBSD, although the way to
provide it to Makefiles is completely different.
ok kettenis@
Diffstat (limited to 'lib/libarch')
-rw-r--r-- | lib/libarch/mips64/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libarch/mips64/Makefile b/lib/libarch/mips64/Makefile index 8a33d4ce0d7..b9667366d73 100644 --- a/lib/libarch/mips64/Makefile +++ b/lib/libarch/mips64/Makefile @@ -1,9 +1,9 @@ -# $OpenBSD: Makefile,v 1.1 2009/09/27 18:20:13 miod Exp $ +# $OpenBSD: Makefile,v 1.2 2010/02/03 20:49:00 miod Exp $ MAN= cacheflush.3 -MANSUBDIR= sgi +MANSUBDIR= loongson sgi -#.if ${MACHINE_ARCH} == "mips64" +#.if ${MACHINE_CPU} == "mips64" #NOPIC= #SRCS= #.include <bsd.lib.mk> |