diff options
author | markm <markm@FreeBSD.org> | 1999-12-30 10:31:21 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 1999-12-30 10:31:21 +0000 |
commit | b265f4186d92bda32a3cac3417b2fb89efe75fe3 (patch) | |
tree | 156ad8683f8f4a149fda81e79a15cf6051fe1a80 /Makefile.inc1 | |
parent | 686486816290aa4570f75015fdd683daf17fad1c (diff) | |
download | FreeBSD-src-b265f4186d92bda32a3cac3417b2fb89efe75fe3.zip FreeBSD-src-b265f4186d92bda32a3cac3417b2fb89efe75fe3.tar.gz |
Grrrr... This was supoosed to go with the commit to kerberosIV/.../libroken's
Makefile.
Fix make world by building appropriate build-tools.
Submitted by: marcel
Diffstat (limited to 'Makefile.inc1')
-rw-r--r-- | Makefile.inc1 | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1 index cd10435..5ff8332 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -414,9 +414,14 @@ _share= share/syscons/scrnmaps _fortran= gnu/usr.bin/cc/f771 .endif +.if exists(${.CURDIR}/kerberosIV) && exists(${.CURDIR}/crypto) && \ + !defined(NOCRYPT) && defined(MAKE_KERBEROS4) +_libroken= kerberosIV/lib/libroken +.endif + build-tools: .for _tool in bin/sh ${_games} gnu/usr.bin/cc/cc_tools ${_fortran} \ - lib/libncurses ${_share} + ${_libroken} lib/libncurses ${_share} cd ${.CURDIR}/${_tool}; ${MAKE} build-tools .endfor |