Date: Sat, 27 Dec 2014 03:20:35 +0000 (UTC) From: Ian Lepore <ian@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r276281 - stable/10 Message-ID: <201412270320.sBR3KZTL004101@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201412270320.sBR3KZTL004101>