summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2001-01-01 19:46:43 +0000
committerphk <phk@FreeBSD.org>2001-01-01 19:46:43 +0000
commite52f3fe9bace681b151cba94c9cbee67eeb0d7fb (patch)
tree3320080aeac58a54db4bedbb98dfe8da438a1a1f
parentde830bf0bbf3b3aa5914e9cb86402cff26d26363 (diff)
downloadFreeBSD-src-e52f3fe9bace681b151cba94c9cbee67eeb0d7fb.zip
FreeBSD-src-e52f3fe9bace681b151cba94c9cbee67eeb0d7fb.tar.gz
This is not necessarily the correct fix, but at least sbin/init compiles
in a sterile environment like "make release"
-rw-r--r--sbin/init/Makefile19
1 files changed, 11 insertions, 8 deletions
diff --git a/sbin/init/Makefile b/sbin/init/Makefile
index 39a5efc..7b9547d 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
OpenPOWER on IntegriCloud