mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-30 14:07:59 +00:00
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.
This commit is contained in:
2
CHANGES
2
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.
|
||||
|
@@ -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 =
|
||||
|
||||
|
Reference in New Issue
Block a user