From: Ondřej Surý Date: Tue, 23 Jul 2019 12:59:36 +0000 (-0400) Subject: Fix the lib/dns/tests/Makefile.in to work without LD_WRAP X-Git-Tag: v9.15.3~34^2 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=b558346437cf607cb49e3717006c4fcf43d4e5cf;p=thirdparty%2Fbind9.git Fix the lib/dns/tests/Makefile.in to work without LD_WRAP --- diff --git a/lib/dns/tests/Makefile.in b/lib/dns/tests/Makefile.in index e06826dee10..44e12b1bda6 100644 --- a/lib/dns/tests/Makefile.in +++ b/lib/dns/tests/Makefile.in @@ -234,9 +234,9 @@ time_test@EXEEXT@: time_test.@O@ dnstest.@O@ ${ISCDEPLIBS} ${DNSDEPLIBS} ${LDFLAGS} -o $@ time_test.@O@ dnstest.@O@ \ ${DNSLIBS} ${ISCLIBS} ${LIBS} -WRAP = -Wl,--wrap=isc__mem_put,--wrap=isc__mem_get,--wrap=isc_mem_attach,--wrap=isc_mem_detach +WRAP_OPTIONS = -Wl,--wrap=isc__mem_put,--wrap=isc__mem_get,--wrap=isc_mem_attach,--wrap=isc_mem_detach tkey_test@EXEEXT@: tkey_test.@O@ ${ISCDEPLIBS} ${DNSDEPLIBS} - if test "${LD_WRAP_TESTS}" = true; then wrap="${WRAP}"; fi; \ + if test "${LD_WRAP_TESTS}" = true; then WRAP="${WRAP_OPTIONS}"; fi; \ ${LIBTOOL_MODE_LINK} ${PURIFY} ${CC} ${CFLAGS} \ ${LDFLAGS} ${WRAP} -o $@ tkey_test.@O@ \ ${DNSLIBS} ${ISCLIBS} ${LIBS}