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