openbsd-ports/net/isc-dhcp/patches/patch-bind_Makefile_in
2016-04-09 12:59:41 +00:00

36 lines
1.6 KiB
Plaintext

$OpenBSD: patch-bind_Makefile_in,v 1.2 2016/04/09 12:59:41 sthen Exp $
--- bind/Makefile.in.orig Tue Mar 22 09:53:43 2016
+++ bind/Makefile.in Fri Apr 8 23:40:38 2016
@@ -64,7 +64,7 @@ bind1:
echo Configuring BIND Export libraries for DHCP. ; \
rm -rf ${cleandirs} ${cleanfiles} ; \
(cd ${bindsrcdir} && \
- ./configure ${bindconfig} > ${binddir}/configure.log); \
+ ./configure ${bindconfig} 2>&1 | tee ${binddir}/configure.log); \
fi
atf:
@@ -74,7 +74,7 @@ atf:
else \
echo Building ATF support ; \
(cd ${bindsrcdir}/unit; \
- MAKE=${GMAKE} ${GMAKE} atf > ${binddir}/build.log ; \
+ MAKE=${GMAKE} ${GMAKE} atf 2>&1 | tee ${binddir}/build.log ; \
cp -rp atf ${binddir}) ; \
fi
@@ -90,11 +90,11 @@ bind2-noguest:
echo Building BIND Export libraries - this takes some time. ;\
(cd ${bindsrcdir}/lib/export ; \
echo building in `pwd` ; \
- MAKE=${GMAKE} ${GMAKE} >> ${binddir}/build.log) ; \
+ MAKE=${GMAKE} ${GMAKE} 2>&1 | tee ${binddir}/build.log) ; \
\
echo Installing BIND Export libraries to ${binddir}. ; \
(cd ${bindsrcdir}/lib/export ; \
- MAKE=${GMAKE} ${GMAKE} install > ${binddir}/install.log) ; \
+ MAKE=${GMAKE} ${GMAKE} install 2>&1 | tee ${binddir}/install.log) ; \
fi
bind2-hostgen: