diff options
author | joerg <joerg@pkgsrc.org> | 2013-10-03 01:25:51 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2013-10-03 01:25:51 +0000 |
commit | 70475ce02b4313579939a8a2a8af90255e02eaeb (patch) | |
tree | 6f6a5453e733ebb88879e8d8c3ec7a0af1224ed8 /net/libfetch | |
parent | 572c2762c3fe7fa7d327ce064c9c2caa6d60a861 (diff) | |
download | pkgsrc-70475ce02b4313579939a8a2a8af90255e02eaeb.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/Makefile | 6 |
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> |