mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-27 20:25:55 -04:00
Fix the remaining cases of <prog>_CFLAGS -> <prog>_CPPFLAGS
Building BIND 9 with older version of BIND 9 installed would result in
build failure. Fix the last two remaining cases where <prog>_CFLAGS was
being used leading to wrong order of the build flags on the command line.
(cherry picked from commit 41a60a0e21)
This commit is contained in:
parent
c74d78a9ff
commit
651af0bf65
2 changed files with 3 additions and 3 deletions
|
|
@ -47,7 +47,7 @@ if HAVE_LMDB
|
|||
bin_PROGRAMS += \
|
||||
named-nzd2nzf
|
||||
|
||||
named_nzd2nzf_CFLAGS = \
|
||||
named_nzd2nzf_CPPFLAGS = \
|
||||
$(AM_CPPFLAGS) \
|
||||
$(LMDB_CFLAGS)
|
||||
|
||||
|
|
|
|||
|
|
@ -55,8 +55,8 @@ MAINTAINERCLEANFILES = $(OPTIONS_FILES)
|
|||
|
||||
noinst_PROGRAMS = cfg_test
|
||||
|
||||
cfg_test_CFLAGS = \
|
||||
$(AM_CFLAGS) \
|
||||
cfg_test_CPPFLAGS = \
|
||||
$(AM_CPPFLAGS) \
|
||||
$(LIBISC_CFLAGS) \
|
||||
$(LIBDNS_CFLAGS) \
|
||||
$(LIBISCCFG_CFLAGS)
|
||||
|
|
|
|||
Loading…
Reference in a new issue