diff options
author | gordon <gordon@FreeBSD.org> | 2003-11-19 19:57:20 +0000 |
---|---|---|
committer | gordon <gordon@FreeBSD.org> | 2003-11-19 19:57:20 +0000 |
commit | 2f101d59e8732192c6090070f95bf0bf428de4e4 (patch) | |
tree | 2910da62861d36a5c3cec5048b5a5b970314da17 | |
parent | e054e0d24803ae9e349c913a5aea2d6f1cdd253f (diff) | |
download | FreeBSD-src-2f101d59e8732192c6090070f95bf0bf428de4e4.zip FreeBSD-src-2f101d59e8732192c6090070f95bf0bf428de4e4.tar.gz |
Make init statically linked by default. It's not worth the pain of having
a dynamically linked init as recently seen by ia64 woes.
Approved by: re (jhb)
-rw-r--r-- | sbin/init/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sbin/init/Makefile b/sbin/init/Makefile index 3d60bbe..75ec72d 100644 --- a/sbin/init/Makefile +++ b/sbin/init/Makefile @@ -11,4 +11,6 @@ WARNS= 0 DPADD= ${LIBUTIL} ${LIBCRYPT} LDADD= -lutil -lcrypt +NOSHARED?= YES + .include <bsd.prog.mk> |