Uh, the NetBSD syscall define spam for alpha has to go after /etc/make.conf

so that it works all the time.
This commit is contained in:
jb 1998-06-03 08:51:39 +00:00
parent 3e275cffbf
commit 50c56cdcc6

View File

@ -1,5 +1,5 @@
# from: @(#)sys.mk 8.2 (Berkeley) 3/21/94
# $Id: sys.mk,v 1.33 1998/05/15 09:34:48 bde Exp $
# $Id: sys.mk,v 1.34 1998/06/03 08:07:31 jb Exp $
unix ?= We run FreeBSD, not UNIX.
@ -249,3 +249,8 @@ HTAGSFLAGS=
.if exists(/etc/make.conf)
.include </etc/make.conf>
.endif
# Architectures that use NetBSD syscalls:
.if ${MACHINE_ARCH} == "alpha"
CFLAGS+= -D__NETBSD_SYSCALLS
.endif