Subject: Re: -current won't build
To: Steve Bellovin <smb@research.att.com>
From: Soren Jacobsen <snj@pobox.com>
List: current-users
Date: 09/21/2003 18:25:37
On 09/21 21:20, Steve Bellovin wrote:
> nbmake: "/usr/src/share/mk/bsd.own.mk" line 47: Malformed conditional (${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "arm" ||)
This ought to fix it.
Index: bsd.own.mk
===================================================================
RCS file: /cvsroot/src/share/mk/bsd.own.mk,v
retrieving revision 1.361
diff -u -r1.361 bsd.own.mk
--- bsd.own.mk 2003/09/21 20:16:47 1.361
+++ bsd.own.mk 2003/09/22 01:24:05
@@ -44,7 +44,7 @@
# ${MACHINE_ARCH} == "mipseb" ||
# ${MACHINE_ARCH} == "mipsel" ||
.if ${MACHINE_ARCH} == "alpha" || \
- ${MACHINE_ARCH} == "arm" ||
+ ${MACHINE_ARCH} == "arm" || \
${MACHINE_ARCH} == "i386" || \
${MACHINE_ARCH} == "sparc" || \
${MACHINE_ARCH} == "sparc64"