summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>2010-12-24 04:55:56 +0000
committerimp <imp@FreeBSD.org>2010-12-24 04:55:56 +0000
commitc5439e96610a78e072b84e8f862c65ce43ca6d16 (patch)
tree4635f9c6a30dab885c691b47d0d4be78d94320e0 /Makefile
parentf21cfeb4a06a620a96d902d9ba78fe74673fe331 (diff)
downloadFreeBSD-src-c5439e96610a78e072b84e8f862c65ce43ca6d16.zip
FreeBSD-src-c5439e96610a78e072b84e8f862c65ce43ca6d16.tar.gz
Redirect stderr from config to /dev/null. config -m is printing lots
of annoying warnings when dealing with arm. The arm config files need to be fixed, but this restricts the output to a more useful place.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 40445ac..915604d 100644
--- a/Makefile
+++ b/Makefile
@@ -350,8 +350,8 @@ KERNCONFS!= cd ${.CURDIR}/sys/${TARGET}/conf && \
universe_kernconfs:
.for kernel in ${KERNCONFS}
TARGET_ARCH_${kernel}!= cd ${.CURDIR}/sys/${TARGET}/conf && \
- config -m ${.CURDIR}/sys/${TARGET}/conf/${kernel} | \
- cut -f 2
+ config -m ${.CURDIR}/sys/${TARGET}/conf/${kernel} 2> /dev/null | \
+ cut -f 2
universe_kernconfs: universe_kernconf_${TARGET}_${kernel}
universe_kernconf_${TARGET}_${kernel}:
@(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \
OpenPOWER on IntegriCloud