diff options
| author | christos <christos@NetBSD.org> | 2004-05-20 15:08:30 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2004-05-20 15:08:30 +0000 |
| commit | fdd71ccbd9e2adea20b50f357fd9233be2b5668b (patch) | |
| tree | 3009547c776f74025b746440ae5a81bde0e7088d /gnu | |
| parent | bd67b97d6a69e12f8de876e90bb3691e0799866f (diff) | |
1.6 make(1) friendly. Did I mention before that the change to ignore
undefined variables just brings pain?
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/usr.bin/cvs/cvs/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/usr.bin/cvs/cvs/Makefile b/gnu/usr.bin/cvs/cvs/Makefile index a3cdaa6241a..9181daa4d30 100644 --- a/gnu/usr.bin/cvs/cvs/Makefile +++ b/gnu/usr.bin/cvs/cvs/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.13 2004/05/20 03:25:13 christos Exp $ +# $NetBSD: Makefile,v 1.14 2004/05/20 15:08:30 christos Exp $ .include "${.CURDIR}/../Makefile.inc" @@ -21,8 +21,8 @@ SRCS= add.c admin.c annotate.c buffer.c checkin.c checkout.c classify.c \ DPADD+= ${LIBDIFF} ${LIBCVS} ${LIBCRYPT} ${LIBZ} LDADD+= ${LIBDIFF} ${LIBCVS} -lcrypt -lz -.if (${USE_KERBEROS} != "no") -.if (${USE_KERBEROS4} != "no") +.if defined(USE_KERBEROS) && (${USE_KERBEROS} != "no") +.if defined(USE_KERBEROS4) && (${USE_KERBEROS4} != "no") CPPFLAGS+= -DHAVE_KERBEROS -I${DESTDIR}/usr/include/kerberosIV DPADD+= ${LIBKRB} ${LIBDES} LDADD+= -lkrb -ldes |
