diff options
author | phk <phk@FreeBSD.org> | 2001-01-01 19:46:43 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2001-01-01 19:46:43 +0000 |
commit | e52f3fe9bace681b151cba94c9cbee67eeb0d7fb (patch) | |
tree | 3320080aeac58a54db4bedbb98dfe8da438a1a1f | |
parent | de830bf0bbf3b3aa5914e9cb86402cff26d26363 (diff) | |
download | FreeBSD-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/Makefile | 19 |
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 |