Hide error message from grep when DESTDIR is set to a bogus value.

Submitted by:	kris
This commit is contained in:
Hye-Shik Chang 2002-09-09 05:04:55 +00:00
parent d6999c9d3e
commit 7b88fe8c9c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=65893

View File

@ -19,7 +19,10 @@ BASELOCALEDIR= ${DESTDIR}/usr/share/locale
PLIST_SUB= BASELOCALEDIR=${BASELOCALEDIR} \
LANGS="${LANGS}"
_HAVE_SWIDTH!= grep _CTYPE_SW ${DESTDIR}/usr/include/ctype.h || true
.include <bsd.port.pre.mk>
_HAVE_SWIDTH!= ${GREP} _CTYPE_SW ${DESTDIR}/usr/include/ctype.h 2>/dev/null \
|| ${TRUE}
.if empty(_HAVE_SWIDTH)
PKGNAMESUFFIX= -without-swidth
.endif
@ -30,4 +33,4 @@ post-install:
${BASELOCALEDIR}/${lang}.UTF-8
.endfor
.include <bsd.port.mk>
.include <bsd.port.post.mk>