# --- T2-COPYRIGHT-NOTE-BEGIN --- # T2 SDE: package/*/dhcp/verbose-log.patch # Copyright (C) 2022 The T2 SDE Project # # This Copyright note is generated by scripts/Create-CopyPatch, # more information can be found in the files COPYING and README. # # This patch file is dual-licensed. It is available under the license the # patched project is licensed under, as long as it is an OpenSource license # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms # of the GNU General Public License version 2 as used by the T2 SDE. # --- T2-COPYRIGHT-NOTE-END --- --- dhcp-4.4.3/bind/Makefile.in.vanilla 2022-04-22 15:37:28.613659973 +0200 +++ dhcp-4.4.3/bind/Makefile.in 2022-04-22 15:39:21.564665800 +0200 @@ -56,7 +56,7 @@ echo Configuring BIND libraries for DHCP. ; \ rm -rf ${cleandirs} ${cleanfiles} ; \ (cd ${bindsrcdir} && \ - ./configure ${bindconfig} > ${binddir}/configure.log); \ + ./configure ${bindconfig} ); \ fi atf: bind1 @@ -66,7 +66,7 @@ else \ echo Building ATF support ; \ (cd ${bindsrcdir}/unit; \ - $(MAKE) atf > ${binddir}/build.log ; \ + $(MAKE) atf ; \ cp -rp atf ${binddir}) ; \ fi @@ -81,15 +81,14 @@ for libdir in ${bindlibs} ; do \ (cd ${bindsrcdir}/lib/$$libdir ; \ echo Building $$libdir library in `pwd` ; \ - $(MAKE) all >> ${binddir}/build.log) ; \ + $(MAKE) all ) ; \ done ; \ \ echo Installing BIND libraries to ${binddir}. ; \ for libdir in ${bindlibs} ; do \ (cd ${bindsrcdir}/lib/$$libdir ; \ MAKEDEFS="${installdirs}"; export MAKEDEFS; \ - $(MAKE) ${installdirs} LIBTOOL_MODE_INSTALL= install >> \ - ${binddir}/install.log) ; \ + $(MAKE) ${installdirs} LIBTOOL_MODE_INSTALL= install) ; \ done ; \ fi