From 046f7970c675b0e77e5348d1163e4d1f4ea0e737 Mon Sep 17 00:00:00 2001 From: markm Date: Sun, 1 Oct 1995 15:04:42 +0000 Subject: [PATCH] Define CRYPTOBJDIR if secure is being built --- sbin/Makefile.inc | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/sbin/Makefile.inc b/sbin/Makefile.inc index 470d8699327e..8b44b5f38b3a 100644 --- a/sbin/Makefile.inc +++ b/sbin/Makefile.inc @@ -2,3 +2,13 @@ BINDIR?= /sbin NOSHARED?= YES + +.if exists (${.CURDIR}/../../secure) + +.if exists(${.CURDIR}/../../secure/lib/libcrypt/obj) +CRYPTOBJDIR= ${.CURDIR}/../../secure/lib/libcrypt/obj +.else +CRYPTOBJDIR= ${.CURDIR}/../../secure/lib/libcrypt +.endif + +.endif