Subject: Re: Malformed conditional (${OPSYS} == "IRIX")
To: ryan olejnik <r.olejnik@gmail.com>
From: Thomas Klausner <wiz@NetBSD.org>
List: tech-pkg
Date: 08/02/2005 15:52:41
On Mon, Aug 01, 2005 at 04:23:39PM -0500, ryan olejnik wrote:
> .if ${OPSYS} == "IRIX"
> .elif ${OPSYS} == "SunOS
> .if empty(MACHINE_PLATFORM:MNetBSD-1*-*)
> SUSE_PREFER?=   9.1
> .else
> SUSE_PREFER?=   7.3
> .endif

Just for the record, there's an .endif missing here.
Also, the whole .if is silly, since if OPSYS=SunOS,
MACHINE_PLATFORM will never contain NetBSD.
 Thomas