summaryrefslogtreecommitdiff
path: root/editors/cooledit
diff options
context:
space:
mode:
authorgrant <grant@pkgsrc.org>2004-01-22 08:31:31 +0000
committergrant <grant@pkgsrc.org>2004-01-22 08:31:31 +0000
commit265e175a762130a6be5b102ae2faaeaab00707fc (patch)
tree1d4f827e6983dea0cc9928e7a62a4e7b09420e29 /editors/cooledit
parentf49bdea710428ecd01cdf0284c9c4641ef50dddf (diff)
downloadpkgsrc-265e175a762130a6be5b102ae2faaeaab00707fc.tar.gz
avoid if ! .. statement, not all shells can handle it.
Diffstat (limited to 'editors/cooledit')
-rw-r--r--editors/cooledit/Makefile4
1 files changed, 2 insertions, 2 deletions
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 ; \