From: Mark Andrews Date: Wed, 18 Sep 2002 05:18:18 +0000 (+0000) Subject: 1382. [bug] make install failed with --enable-libbind. [RT #3656] X-Git-Tag: v9.2.3rc1~104^2~318 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=8b0ee8448bec37bf1e771363dccce7c0e73eb1a7;p=thirdparty%2Fbind9.git 1382. [bug] make install failed with --enable-libbind. [RT #3656] top_srcdir was being defined via make/rules.in and was over riding that correct definition from Makefile.in. Use the abosolute version in make/rules.in. --- diff --git a/CHANGES b/CHANGES index 9b227f7cd5a..51a159b4b43 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,5 @@ +1382. [bug] make install failed with --enable-libbind. [RT #3656] + 1381. [bug] named failed to correctly process answers that contained DNAME records where the resulting CNAME resulted in a negative answer. diff --git a/lib/bind/make/rules.in b/lib/bind/make/rules.in index c3c3e4e9bf5..4a1a0f8e5f2 100644 --- a/lib/bind/make/rules.in +++ b/lib/bind/make/rules.in @@ -13,7 +13,7 @@ # NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION # WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -# $Id: rules.in,v 1.4 2002/08/08 05:54:12 marka Exp $ +# $Id: rules.in,v 1.5 2002/09/18 05:18:18 marka Exp $ ### ### Common Makefile rules for BIND 9. @@ -41,7 +41,7 @@ MAKEDEFS= 'DESTDIR=${DESTDIR}' @SET_MAKE@ top_builddir = @BIND9_TOP_BUILDDIR@ -top_srcdir = @top_srcdir@ +abs_top_srcdir = @abs_top_srcdir@ ### ### All @@ -102,7 +102,7 @@ STD_CWARNINGS = @STD_CWARNINGS@ .SUFFIXES: .SUFFIXES: .c .@O@ -ALWAYS_INCLUDES = -I${top_builddir} -I${top_srcdir}/@PORT_INCLUDE@ +ALWAYS_INCLUDES = -I${top_builddir} -I${abs_top_srcdir}/@PORT_INCLUDE@ ALWAYS_DEFINES = @ALWAYS_DEFINES@ ALWAYS_WARNINGS =