diff options
author | markm <markm@FreeBSD.org> | 1998-08-06 21:41:13 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 1998-08-06 21:41:13 +0000 |
commit | ec4dc9550e180509f05a84dba8f7d0f654e6de13 (patch) | |
tree | ce6f1b32584b0c69c290c4f5b471b62bbd376af6 /libexec/rshd | |
parent | 02824f2ad90badfccd8ca483c483615d1526ce95 (diff) | |
download | FreeBSD-src-ec4dc9550e180509f05a84dba8f7d0f654e6de13.zip FreeBSD-src-ec4dc9550e180509f05a84dba8f7d0f654e6de13.tar.gz |
Fix LIBDIR (for aout/ELF).
Diffstat (limited to 'libexec/rshd')
-rw-r--r-- | libexec/rshd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/rshd/Makefile b/libexec/rshd/Makefile index cb23d4c..bcae68e 100644 --- a/libexec/rshd/Makefile +++ b/libexec/rshd/Makefile @@ -1,11 +1,11 @@ # From: @(#)Makefile 8.1 (Berkeley) 6/4/93 -# $Id: Makefile,v 1.7 1997/04/23 03:06:47 davidn Exp $ +# $Id$ PROG= rshd SRCS= rshd.c MAN8= rshd.8 -.if exists(${DESTDIR}/usr/lib/libkrb.a) && defined(MAKE_KERBEROS4) +.if exists(${DESTDIR}${LIBDIR}/libkrb.a) && defined(MAKE_KERBEROS4) CFLAGS+=-DKERBEROS -DCRYPT DPADD= ${LIBKRB} ${LIBDES} LDADD= -lkrb -ldes |