aboutsummaryrefslogtreecommitdiff
path: root/lib/Makefile
diff options
context:
space:
mode:
authorJoerg Wunsch <joerg@FreeBSD.org>1996-01-24 21:32:46 +0000
committerJoerg Wunsch <joerg@FreeBSD.org>1996-01-24 21:32:46 +0000
commit7c2f56cca56278fe005949ffddfd9cdd515a5dc4 (patch)
treefe17c57c50c557cc95773f933f5c76c3c6d41eda /lib/Makefile
parent1ce9bf88c347ae279c1ae9eb425f3feae53dad50 (diff)
downloadsrc-7c2f56cca56278fe005949ffddfd9cdd515a5dc4.tar.gz
src-7c2f56cca56278fe005949ffddfd9cdd515a5dc4.zip
Build libscrypt in addition to libdescrypt if RELEASEDIR is set.
Releases do need both libraries (they go into different distributions).
Notes
Notes: svn path=/head/; revision=13620
Diffstat (limited to 'lib/Makefile')
-rw-r--r--lib/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/Makefile b/lib/Makefile
index e923042c09dc..511d1fc45e41 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)