diff options
author | dougb <dougb@FreeBSD.org> | 2003-06-17 08:53:27 +0000 |
---|---|---|
committer | dougb <dougb@FreeBSD.org> | 2003-06-17 08:53:27 +0000 |
commit | 9d0a07cbbd9cc84f8ba3b006f6636c9e7498554b (patch) | |
tree | 3fb7a7990161e631074833586ca6fe7ba2fd154d | |
parent | 35c71928a03800d369738a09947e6bcb26d29b1a (diff) | |
download | FreeBSD-src-9d0a07cbbd9cc84f8ba3b006f6636c9e7498554b.zip FreeBSD-src-9d0a07cbbd9cc84f8ba3b006f6636c9e7498554b.tar.gz |
Link named-xfer -static. This is the only binary that needs to be
statically compiled for named to work chroot'ed, and we'd like
to be able to do that from /etc/rc.d without additional user
intervention.
-rw-r--r-- | libexec/named-xfer/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libexec/named-xfer/Makefile b/libexec/named-xfer/Makefile index c81340b..4a3ce87 100644 --- a/libexec/named-xfer/Makefile +++ b/libexec/named-xfer/Makefile @@ -21,7 +21,7 @@ LIBISCDIR!= cd ${.CURDIR}/../../lib/libisc; make -V .OBJDIR LIBISC:= ${LIBISCDIR}/libisc.a DPADD+= ${LIBISC} -LDADD+= ${LIBISC} +LDADD+= ${LIBISC} -static MAN= named-xfer.8 |