From 265e175a762130a6be5b102ae2faaeaab00707fc Mon Sep 17 00:00:00 2001 From: grant Date: Thu, 22 Jan 2004 08:31:31 +0000 Subject: avoid if ! .. statement, not all shells can handle it. --- editors/cooledit/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'editors/cooledit') diff --git a/editors/cooledit/Makefile b/editors/cooledit/Makefile index 5f6a048d7a4..30f1c842dd6 100644 --- a/editors/cooledit/Makefile +++ b/editors/cooledit/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2004/01/22 08:30:30 grant Exp $ +# $NetBSD: Makefile,v 1.9 2004/01/22 08:31:31 grant Exp $ # DISTNAME= cooledit-3.17.5 @@ -20,7 +20,7 @@ USE_LIBTOOL= # defined LTCONFIG_OVERRIDE= ${WRKSRC}/ltconfig post-configure: - if ! ${GREP} -q mbstate_t /usr/include/machine/ansi.h ; then \ + if ${GREP} -q mbstate_t /usr/include/machine/ansi.h ; then :; else \ ${MV} ${WRKSRC}/config.h ${WRKSRC}/config.h.bak ; \ ${SED} 's;^.*HAVE_WCHAR_H.*$$;/* mbstate_t is missing from machine/ansi.h */;g' \ < ${WRKSRC}/config.h.bak > ${WRKSRC}/config.h ; \ -- cgit v1.2.3