summaryrefslogtreecommitdiff
path: root/ftp
diff options
context:
space:
mode:
authorHye-Shik Chang <perky@FreeBSD.org>2003-01-21 19:40:26 +0000
committerHye-Shik Chang <perky@FreeBSD.org>2003-01-21 19:40:26 +0000
commit5d311f6832d5e233ebf97f05c91bccb01cbc41ae (patch)
tree583a8a4f308cfcd116a3d4a61ef2f0eafa7af202 /ftp
parento) Fix some install problems due to X11 non-X11 version (diff)
Suppress stderr outputs from embedded shell commands.
Submitted by: Dan Langille <dan@langille.org>
Notes
Notes: svn path=/head/; revision=73743
Diffstat (limited to 'ftp')
-rw-r--r--ftp/py-curl/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/ftp/py-curl/Makefile b/ftp/py-curl/Makefile
index 2ea4bafa2705..383d4fadd02c 100644
--- a/ftp/py-curl/Makefile
+++ b/ftp/py-curl/Makefile
@@ -22,8 +22,8 @@ USE_REINPLACE= yes
EXTRACT_AFTER_ARGS= | ${TAR} -xf - 2>/dev/null || true
.include <bsd.port.pre.mk>
-CURL_VERSION!= ${LOCALBASE}/bin/curl-config --version|grep '${PORTVERSION}$$' \
- 2>&1 || ${TRUE}
+CURL_VERSION!= ${LOCALBASE}/bin/curl-config --version 2>&1 | \
+ grep '${PORTVERSION}$$' 2>&1 || ${TRUE}
.if empty(CURL_VERSION)
IGNORE= requires curl-${PORTVERSION}
.endif