From 7c2f56cca56278fe005949ffddfd9cdd515a5dc4 Mon Sep 17 00:00:00 2001 From: Joerg Wunsch Date: Wed, 24 Jan 1996 21:32:46 +0000 Subject: [PATCH] Build libscrypt in addition to libdescrypt if RELEASEDIR is set. Releases do need both libraries (they go into different distributions). --- lib/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/Makefile b/lib/Makefile index e923042c09d..511d1fc45e4 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -19,6 +19,10 @@ SUBDIR+= libc libcompat libcom_err libcurses libedit \ SUBDIR+= libcrypt .else SUBDIR+= ../secure/lib/libcrypt +.if defined(RELEASEDIR) +# releases do need both libraries +SUBDIR+= libcrypt +.endif .endif .if !exists(../secure) || defined(NOSECURE)