diff options
author | wiz <wiz> | 2003-01-03 12:32:59 +0000 |
---|---|---|
committer | wiz <wiz> | 2003-01-03 12:32:59 +0000 |
commit | aaa8b166092d32bdb312256ce9e907acd11fc074 (patch) | |
tree | d54bcb4bd58b7dbcaa576ef803034bf52cf626e0 /converters | |
parent | 0530686748e1e8e4b9f418c14bc1c162ab97b1d1 (diff) | |
download | pkgsrc-aaa8b166092d32bdb312256ce9e907acd11fc074.tar.gz |
Fix test target: do not use csh syntax (|&). Closes PR 19647.
Diffstat (limited to 'converters')
-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" |