summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Wright <jason@cvs.openbsd.org>2001-09-07 20:08:28 +0000
committerJason Wright <jason@cvs.openbsd.org>2001-09-07 20:08:28 +0000
commit0be9d67d305749cdc036b9949925eeb5ac5acbeb (patch)
treeb95e2a70399aaabacd46c462115ed9c013161c4d
parent8b9652899d84bc44da2a6dc5ee0ab7d653106094 (diff)
-DELF_SUPPORT for sparc64
-rw-r--r--usr.sbin/config/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/config/Makefile b/usr.sbin/config/Makefile
index 150c82a64be..a112cd457c1 100644
--- a/usr.sbin/config/Makefile
+++ b/usr.sbin/config/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.7 2001/07/11 03:02:25 pvalchev Exp $
+# $OpenBSD: Makefile,v 1.8 2001/09/07 20:08:27 jason Exp $
PROG= config
BINDIR= /usr/sbin
@@ -6,7 +6,7 @@ SRCS= files.c gram.y hash.c main.c mkheaders.c mkioconf.c mkmakefile.c \
mkswap.c pack.c scan.l sem.c util.c \
ukc.c misc.c ukcutil.c cmd.c exec.c
.if (${MACHINE_ARCH} == "powerpc") || (${MACHINE_ARCH} == "hppa") || \
- (${MACHINE_ARCH} == "alpha")
+ (${MACHINE_ARCH} == "alpha") || (${MACHINE_ARCH} == "sparc64")
CFLAGS+=-DELF_SUPPORT
SRCS+= exec_elf.c
.else