diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2010-04-26 22:21:16 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2010-04-26 22:21:16 +0000 |
commit | c46241dc26b3f06363b71f26f4518c92fcb51e57 (patch) | |
tree | 4a034012b75df127eed0f9a2f465fede56dea410 /sys/arch/amd64 | |
parent | cf73c4ff4bd72c5b565aa20b4d28e922b49c282a (diff) |
even cleaner mach/arch/machdir/archdir
Diffstat (limited to 'sys/arch/amd64')
-rw-r--r-- | sys/arch/amd64/conf/Makefile.amd64 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/amd64/conf/Makefile.amd64 b/sys/arch/amd64/conf/Makefile.amd64 index 4f958ee1f24..70dc3afe2b5 100644 --- a/sys/arch/amd64/conf/Makefile.amd64 +++ b/sys/arch/amd64/conf/Makefile.amd64 @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.amd64,v 1.25 2010/04/26 22:11:37 deraadt Exp $ +# $OpenBSD: Makefile.amd64,v 1.26 2010/04/26 22:21:14 deraadt Exp $ # This makefile is constructed from a machine description: # config machineid @@ -31,9 +31,9 @@ S!= cd ../../../..; pwd .endif _mach?= amd64 -_machdir?= $S/arch/amd64 _arch?= amd64 -_archdir?= $S/arch/amd64 +_machdir?= $S/arch/${_mach} +_archdir?= $S/arch/${_arch} INCLUDES= -nostdinc -I. -I$S -I$S/arch CPPFLAGS= ${INCLUDES} ${IDENT} -D_KERNEL -Damd64 -Dx86_64 |