aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@FreeBSD.org>2003-06-22 21:56:22 +0000
committerRuslan Ermilov <ru@FreeBSD.org>2003-06-22 21:56:22 +0000
commitb31745f59978785062d93b77f80027841c73b1e3 (patch)
treea83ddb897be1b9484d7c90da4fb893e2971670d3 /Makefile
parentf29ba63ec91fe9ed9f731e690254bba1d38f0b78 (diff)
downloadsrc-b31745f59978785062d93b77f80027841c73b1e3.tar.gz
src-b31745f59978785062d93b77f80027841c73b1e3.zip
Do the upgrade checks quietly.
Notes
Notes: svn path=/head/; revision=116696
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 839938997ebb..6334f635927c 100644
--- a/Makefile
+++ b/Makefile
@@ -140,7 +140,7 @@ kernel: buildkernel installkernel
#
upgrade_checks:
@if ! (cd ${.CURDIR}/tools/regression/usr.bin/make && \
- PATH=${PATH} ${MAKE} 2>/dev/null); \
+ PATH=${PATH} ${MAKE} >/dev/null 2>&1); \
then \
(cd ${.CURDIR} && make make); \
fi
@@ -160,7 +160,7 @@ MMAKE= ${MMAKEENV} make \
make:
@echo
@echo "--------------------------------------------------------------"
- @echo " Building an up-to-date make(1)"
+ @echo ">>> Building an up-to-date make(1)"
@echo "--------------------------------------------------------------"
@cd ${.CURDIR}/usr.bin/make; \
${MMAKE} obj && \