aboutsummaryrefslogtreecommitdiff
path: root/sbin
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2001-01-01 19:46:43 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2001-01-01 19:46:43 +0000
commit8440a010774e8a31673a82139dd7e00dffd1c1d9 (patch)
tree427af02c3018dbd80de2023ede2088e9270e05df /sbin
parentcfc038e79cb54a402e6ceec5a96aa82bb6315ed6 (diff)
downloadsrc-8440a010774e8a31673a82139dd7e00dffd1c1d9.tar.gz
src-8440a010774e8a31673a82139dd7e00dffd1c1d9.zip
This is not necessarily the correct fix, but at least sbin/init compiles
in a sterile environment like "make release"
Notes
Notes: svn path=/head/; revision=70562
Diffstat (limited to 'sbin')
-rw-r--r--sbin/init/Makefile19
1 files changed, 11 insertions, 8 deletions
diff --git a/sbin/init/Makefile b/sbin/init/Makefile
index 39a5efccf96c..7b9547daabbe 100644
--- a/sbin/init/Makefile
+++ b/sbin/init/Makefile
@@ -8,14 +8,17 @@ BINMODE=500
INSTALLFLAGS=-fschg
CFLAGS+=-DDEBUGSHELL -DSECURE -DLOGIN_CAP -DCOMPAT_SYSV_INIT
-.if exists(${.CURDIR}/../../secure) && !defined(NOCRYPT) && !defined(NOSECURE)
-DISTRIBUTION=crypto
-DPADD= ${LIBUTIL} ${DESCRYPTOBJDIR}/libdescrypt.a
-LDADD= -lutil -L${DESCRYPTOBJDIR} -ldescrypt
-.else
-DPADD= ${LIBUTIL} ${SCRYPTOBJDIR}/libscrypt.a
-LDADD= -lutil -L${SCRYPTOBJDIR} -lscrypt
-.endif
+#.if exists(${.CURDIR}/../../secure) && !defined(NOCRYPT) && !defined(NOSECURE)
+#DISTRIBUTION=crypto
+#DPADD= ${LIBUTIL} ${DESCRYPTOBJDIR}/libdescrypt.a
+#LDADD= -lutil -L${DESCRYPTOBJDIR} -ldescrypt
+#.else
+#DPADD= ${LIBUTIL} ${SCRYPTOBJDIR}/libscrypt.a
+#LDADD= -lutil -L${SCRYPTOBJDIR} -lscrypt
+#.endif
+
+DPADD= ${LIBUTIL} ${SCRYPTOBJDIR}/libcrypt.a
+LDADD= -lutil -L${SCRYPTOBJDIR} -lcrypt
.if exists(${.OBJDIR}/../../lib/libcrypt)
SCRYPTOBJDIR= ${.OBJDIR}/../../lib/libcrypt