* updated firefox (133.0.3 -> 134.0.2)
[t2sde.git] / package / network / dhcp / verbose-log.patch
blobc4e42d89a1418bdf4dd7f92144d2a8335a389810
1 # --- T2-COPYRIGHT-NOTE-BEGIN ---
2 # T2 SDE: package/*/dhcp/verbose-log.patch
3 # Copyright (C) 2022 The T2 SDE Project
4 #
5 # This Copyright note is generated by scripts/Create-CopyPatch,
6 # more information can be found in the files COPYING and README.
7 #
8 # This patch file is dual-licensed. It is available under the license the
9 # patched project is licensed under, as long as it is an OpenSource license
10 # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
11 # of the GNU General Public License version 2 as used by the T2 SDE.
12 # --- T2-COPYRIGHT-NOTE-END ---
14 --- dhcp-4.4.3/bind/Makefile.in.vanilla 2022-04-22 15:37:28.613659973 +0200
15 +++ dhcp-4.4.3/bind/Makefile.in 2022-04-22 15:39:21.564665800 +0200
16 @@ -56,7 +56,7 @@
17 echo Configuring BIND libraries for DHCP. ; \
18 rm -rf ${cleandirs} ${cleanfiles} ; \
19 (cd ${bindsrcdir} && \
20 - ./configure ${bindconfig} > ${binddir}/configure.log); \
21 + ./configure ${bindconfig} ); \
24 atf: bind1
25 @@ -66,7 +66,7 @@
26 else \
27 echo Building ATF support ; \
28 (cd ${bindsrcdir}/unit; \
29 - $(MAKE) atf > ${binddir}/build.log ; \
30 + $(MAKE) atf ; \
31 cp -rp atf ${binddir}) ; \
34 @@ -81,15 +81,14 @@
35 for libdir in ${bindlibs} ; do \
36 (cd ${bindsrcdir}/lib/$$libdir ; \
37 echo Building $$libdir library in `pwd` ; \
38 - $(MAKE) all >> ${binddir}/build.log) ; \
39 + $(MAKE) all ) ; \
40 done ; \
42 echo Installing BIND libraries to ${binddir}. ; \
43 for libdir in ${bindlibs} ; do \
44 (cd ${bindsrcdir}/lib/$$libdir ; \
45 MAKEDEFS="${installdirs}"; export MAKEDEFS; \
46 - $(MAKE) ${installdirs} LIBTOOL_MODE_INSTALL= install >> \
47 - ${binddir}/install.log) ; \
48 + $(MAKE) ${installdirs} LIBTOOL_MODE_INSTALL= install) ; \
49 done ; \