diff options
author | wiz <wiz@pkgsrc.org> | 2003-01-03 12:32:59 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2003-01-03 12:32:59 +0000 |
commit | 16f56a4b008943a3a48d28ceff09bb4455b65ddd (patch) | |
tree | d54bcb4bd58b7dbcaa576ef803034bf52cf626e0 /converters/libiconv | |
parent | 9b88cf0ceea4522658876b52efce4f2920507898 (diff) | |
download | pkgsrc-16f56a4b008943a3a48d28ceff09bb4455b65ddd.tar.gz |
Fix test target: do not use csh syntax (|&). Closes PR 19647.
Diffstat (limited to 'converters/libiconv')
-rw-r--r-- | converters/libiconv/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/converters/libiconv/Makefile b/converters/libiconv/Makefile index 1d48737f2bc..30e855fc223 100644 --- a/converters/libiconv/Makefile +++ b/converters/libiconv/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2002/10/29 14:36:55 agc Exp $ +# $NetBSD: Makefile,v 1.15 2003/01/03 12:32:59 wiz Exp $ # DISTNAME= libiconv-1.8 @@ -31,6 +31,6 @@ pre-install: ${RM} -f ${PREFIX}/lib/charset.alias test: build - cd ${WRKSRC} && ${MAKE_ENV} ${MAKE_PROGRAM} check |& tee ${WRKDIR}/check.log + cd ${WRKSRC} && ${MAKE_ENV} ${MAKE_PROGRAM} check 2>&1 | tee ${WRKDIR}/check.log .include "../../mk/bsd.pkg.mk" |