replace a non-working make construct with a working one.

now crash only builds unsupported.c on non-x86 systems again.
This commit is contained in:
mrg 2011-04-12 01:47:20 +00:00
parent d1d3b528a7
commit 8ca46a05f4
1 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.8 2011/04/11 04:22:32 mrg Exp $
# $NetBSD: Makefile,v 1.9 2011/04/12 01:47:20 mrg Exp $
PROG= crash
MAN= crash.8
@ -9,7 +9,8 @@ DPADD+= ${LIBUTIL} ${LIBKVM} ${LIBEDIT} ${LIBTERMINFO}
# some ddb kernel components need limited modifications. for now,
# punt if not noted as implemented here.
.if !empty(${MACHINE:C/(amd64|i386)//})
.if ${MACHINE} != "amd64" \
&& ${MACHINE} != "i386"
SRCS+= unsupported.c
.else