aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/gcore
diff options
context:
space:
mode:
authorMarcel Moolenaar <marcel@FreeBSD.org>1999-11-14 13:54:44 +0000
committerMarcel Moolenaar <marcel@FreeBSD.org>1999-11-14 13:54:44 +0000
commit0917704bd4360ecc5c28d8961534fab7228dd1ff (patch)
tree571f4f72304b0d631bd6808faace186b95d27a21 /usr.bin/gcore
parent5d53601420282a042d1f2a120ba7f429371ef246 (diff)
downloadsrc-0917704bd4360ecc5c28d8961534fab7228dd1ff.tar.gz
src-0917704bd4360ecc5c28d8961534fab7228dd1ff.zip
${MACHINE} -> ${MACHINE_ARCH}
All Makefiles now use MACHINE_ARCH for the target architecture. Unification is required for cross-building. Tags added to: sys/boot/Makefile sys/boot/arc/loader/Makefile sys/kern/Makefile usr.bin/cpp/Makefile usr.bin/gcore/Makefile usr.bin/truss/Makefile usr.bin/gcore/Makefile: fixed typo: MACHINDE -> MACHINE_ARCH
Notes
Notes: svn path=/head/; revision=53152
Diffstat (limited to 'usr.bin/gcore')
-rw-r--r--usr.bin/gcore/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/gcore/Makefile b/usr.bin/gcore/Makefile
index 7f6a3eed905a..f495ecb0c66f 100644
--- a/usr.bin/gcore/Makefile
+++ b/usr.bin/gcore/Makefile
@@ -1,4 +1,5 @@
# @(#)Makefile 8.1 (Berkeley) 6/6/93
+# $FreeBSD$
PROG= gcore
SRCS= elfcore.c gcore.c
@@ -6,10 +7,10 @@ CFLAGS+=-Wall
DPADD= ${LIBKVM}
LDADD= -lkvm
-.if ${MACHINE} != "sparc"
+.if ${MACHINE_ARCH} != "sparc"
SRCS+= md-nop.c
.else
-SRCS+= md-${MACHINDE}.c
+SRCS+= md-${MACHINE_ARCH}.c
.endif
.include <bsd.prog.mk>