Stop eating all process memory if either of ${.CURDIR}/../kerberosIV

or ${.CURDIR}/../kerberos5 does not exist.

Spotted by:	Alexandr Listopad <laa@reis.zp.ua>
MFC after:	3 days
This commit is contained in:
Ruslan Ermilov 2002-08-05 16:57:43 +00:00
parent 8d785bd77c
commit 93c10c2246
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=101392

View File

@ -194,8 +194,12 @@ BIGBOOTLABEL= minimum2
ZIPNSPLIT= gzip --no-name -9 -c | split -b 240640 -
# Things that need to be recompiled with Kerberos support.
.if exists(${.CURDIR}/../kerberosIV) && exists(${.CURDIR}/../crypto) && !defined(NOKERBEROS)
K4PROGS!= cd ${.CURDIR}/../kerberosIV; ${MAKE} -V KPROGS
.endif
.if exists(${.CURDIR}/../kerberos5) && exists(${.CURDIR}/../crypto) && !defined(NOKERBEROS)
K5PROGS!= cd ${.CURDIR}/../kerberos5; ${MAKE} -V KPROGS
.endif
# Things that need to be compiled without crypto support in releases
.if !defined(FIXCRYPTO)