diff options
author | grant <grant@pkgsrc.org> | 2004-01-22 08:31:31 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2004-01-22 08:31:31 +0000 |
commit | 8d1b33d9504df93df077b7742e9de71269df8e05 (patch) | |
tree | 1d4f827e6983dea0cc9928e7a62a4e7b09420e29 /editors | |
parent | b1bf25528c2c0fac1c71cad7155dc2e981461872 (diff) | |
download | pkgsrc-8d1b33d9504df93df077b7742e9de71269df8e05.tar.gz |
avoid if ! .. statement, not all shells can handle it.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/cooledit/Makefile | 4 |
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 ; \ |