svn commit: r290945 - head/tools/build

Bryan Drewery bdrewery at FreeBSD.org
Mon Nov 16 21:05:39 UTC 2015


Author: bdrewery
Date: Mon Nov 16 21:05:38 2015
New Revision: 290945
URL: https://svnweb.freebsd.org/changeset/base/290945

Log:
  Revert r290944. It was wrong.

Modified:
  head/tools/build/Makefile

Modified: head/tools/build/Makefile
==============================================================================
--- head/tools/build/Makefile	Mon Nov 16 20:31:00 2015	(r290944)
+++ head/tools/build/Makefile	Mon Nov 16 21:05:38 2015	(r290945)
@@ -9,7 +9,7 @@ INCS=
 
 BOOTSTRAPPING?=	0
 
-_WITH_PWCACHEDB!= grep -c pwcache_groupdb /usr/include/grp.h 2>/dev/null || echo 0
+_WITH_PWCACHEDB!= grep -c pwcache_groupdb /usr/include/grp.h || true
 .if ${_WITH_PWCACHEDB} == 0
 .PATH: ${.CURDIR}/../../contrib/libc-pwcache
 CFLAGS+=	-I${.CURDIR}/../../contrib/libc-pwcache \
@@ -17,7 +17,7 @@ CFLAGS+=	-I${.CURDIR}/../../contrib/libc
 SRCS+=		pwcache.c
 .endif
 
-_WITH_STRSVIS!=	grep -c strsvis /usr/include/vis.h 2>/dev/null || echo 0
+_WITH_STRSVIS!=	grep -c strsvis /usr/include/vis.h || true
 .if ${_WITH_STRSVIS} == 0
 .PATH: ${.CURDIR}/../../contrib/libc-vis
 SRCS+=		vis.c
@@ -25,7 +25,7 @@ CFLAGS+=	-I${.CURDIR}/../../contrib/libc
 		-I${.CURDIR}/../../lib/libc/include
 .endif
 
-_WITH_REALLOCARRAY!= grep -c reallocarray /usr/include/stdlib.h 2>/dev/null || echo 0
+_WITH_REALLOCARRAY!= grep -c reallocarray /usr/include/stdlib.h || true
 .if ${_WITH_REALLOCARRAY} == 0
 .PATH: ${.CURDIR}/../../lib/libc/stdlib
 INCS+=		stdlib.h


More information about the svn-src-head mailing list