diff options
author | Doug Barton <dougb@FreeBSD.org> | 2009-07-30 18:47:46 +0000 |
---|---|---|
committer | Doug Barton <dougb@FreeBSD.org> | 2009-07-30 18:47:46 +0000 |
commit | e9a0414264f681ff7a34cbc4045e9c5d6e75f4d2 (patch) | |
tree | d5f5c98761044a047391e68eb9c53d6addaf0b79 | |
parent | - Remove unneeded do-build target to pass the correct arguments to ant. (diff) |
The dependency on idnkit should be a LIB_, not a BUILD_
PR: ports/137240
Submitted by: danger
-rw-r--r-- | dns/bind95/Makefile | 2 | ||||
-rw-r--r-- | dns/bind96/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/dns/bind95/Makefile b/dns/bind95/Makefile index 651e5907e0fb..548f69e59846 100644 --- a/dns/bind95/Makefile +++ b/dns/bind95/Makefile @@ -76,7 +76,7 @@ CONFIGURE_ARGS+= --without-libxml2 .if defined(WITH_IDN) CONFIGURE_ARGS+= --with-idn=${LOCALBASE} --with-libiconv=${LOCALBASE} -BUILD_DEPENDS+= runidn:${PORTSDIR}/dns/idnkit +LIB_DEPENDS+= idnkit.1:${PORTSDIR}/dns/idnkit .else CONFIGURE_ARGS+= --without-idn .endif diff --git a/dns/bind96/Makefile b/dns/bind96/Makefile index 0b33656d85ce..efdcd4998ca7 100644 --- a/dns/bind96/Makefile +++ b/dns/bind96/Makefile @@ -75,7 +75,7 @@ CONFIGURE_ARGS+= --without-libxml2 .if defined(WITH_IDN) CONFIGURE_ARGS+= --with-idn=${LOCALBASE} --with-libiconv=${LOCALBASE} -BUILD_DEPENDS+= runidn:${PORTSDIR}/dns/idnkit +LIB_DEPENDS+= idnkit.1:${PORTSDIR}/dns/idnkit .else CONFIGURE_ARGS+= --without-idn .endif |