svn commit: r276281 - stable/10
Ian Lepore
ian at FreeBSD.org
Sat Dec 27 03:20:35 UTC 2014
Author: ian
Date: Sat Dec 27 03:20:34 2014
New Revision: 276281
URL: https://svnweb.freebsd.org/changeset/base/276281
Log:
MFC r265840: Eliminate spurious warnings when grep doesn't find NO_UNIVERSE
Modified:
stable/10/Makefile
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/Makefile
==============================================================================
--- stable/10/Makefile Sat Dec 27 03:19:04 2014 (r276280)
+++ stable/10/Makefile Sat Dec 27 03:20:34 2014 (r276281)
@@ -476,7 +476,7 @@ TARGET!= uname -m
.if defined(MAKE_ALL_KERNELS)
_THINNER=cat
.else
-_THINNER=xargs grep -L "^.NO_UNIVERSE"
+_THINNER=xargs grep -L "^.NO_UNIVERSE" || true
.endif
KERNCONFS!= cd ${KERNSRCDIR}/${TARGET}/conf && \
find [A-Z0-9]*[A-Z0-9] -type f -maxdepth 0 \
More information about the svn-src-all
mailing list