Subject: Re: Problems with src/lib/Makefile.
To: gabriel rosenkoetter <gr@eclipsed.net>
From: Erich T. Enke <Erich.T.Enke@wheaton.edu>
List: current-users
Date: 07/19/2000 17:18:36
On Wed, 19 Jul 2000, gabriel rosenkoetter wrote:

> Line 13 of this file reads:
> 
> .if (${MKCRYPTO} != "no")
> 
> While I can't see anything syntactically wrong with that, my make
> build fails

Ahh.. actually one I know!  MKCRYPTO (for some reason) isn't set by
default.  This expands the line to:
.if ( != "no" )

which is indeed syntactically wrong.  Work around this by explicitly
defining MKCRYPTO and MKKERBEROS (you'd have problems with that one a bit
later) on the command line.

hth
Erich