summaryrefslogtreecommitdiff
path: root/net/libfetch
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2013-10-03 01:25:51 +0000
committerjoerg <joerg@pkgsrc.org>2013-10-03 01:25:51 +0000
commitc44c6f9f09dd890118ccde6358d25f20dcd0f713 (patch)
tree6f6a5453e733ebb88879e8d8c3ec7a0af1224ed8 /net/libfetch
parentcd409eb6ca1cc4844c8b56ebc2f45d6aef73ec36 (diff)
downloadpkgsrc-c44c6f9f09dd890118ccde6358d25f20dcd0f713.tar.gz
Add explicit sh invocation in case the checkout is missing the
executable bit on errlist.sh.
Diffstat (limited to 'net/libfetch')
-rw-r--r--net/libfetch/files/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/libfetch/files/Makefile b/net/libfetch/files/Makefile
index 86f2f8219ed..6083b8ea45f 100644
--- a/net/libfetch/files/Makefile
+++ b/net/libfetch/files/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.6 2013/07/22 16:14:25 jperkin Exp $
+# $NetBSD: Makefile,v 1.7 2013/10/03 01:25:51 joerg Exp $
LIB= fetch
SRCS= fetch.c common.c ftp.c http.c file.c
@@ -32,11 +32,11 @@ CPPFLAGS+= -DFTP_COMBINE_CWDS
WARNS?= 4
ftperr.h: ${.CURDIR}/ftp.errors ${.CURDIR}/Makefile ${.CURDIR}/errlist.sh
- ${.CURDIR}/errlist.sh ftp_errlist FTP \
+ sh ${.CURDIR}/errlist.sh ftp_errlist FTP \
${.CURDIR}/ftp.errors > ${.TARGET}
httperr.h: ${.CURDIR}/http.errors ${.CURDIR}/Makefile ${.CURDIR}/errlist.sh
- ${.CURDIR}/errlist.sh http_errlist HTTP \
+ sh ${.CURDIR}/errlist.sh http_errlist HTTP \
${.CURDIR}/http.errors > ${.TARGET}
.include <bsd.lib.mk>