diff options
author | sf <sf@FreeBSD.org> | 2001-01-03 19:55:30 +0000 |
---|---|---|
committer | sf <sf@FreeBSD.org> | 2001-01-03 19:55:30 +0000 |
commit | 00956bdd439bc88d8cfcadac2a21870c74333761 (patch) | |
tree | b2b654157b947ddca854065127e2930157b90a95 /databases/db42 | |
parent | c4c1376fff7d94829026daffaedfc76831178124 (diff) | |
download | FreeBSD-ports-00956bdd439bc88d8cfcadac2a21870c74333761.zip FreeBSD-ports-00956bdd439bc88d8cfcadac2a21870c74333761.tar.gz |
make ${WRKSRC}/${CONFIGURE_SCRIPT} writable befor configure to allow
building without root privilege.
PR: 21951
Submitted by: Kawata Masahiko <m-kawata@cd.jp.nec.com>
Diffstat (limited to 'databases/db42')
-rw-r--r-- | databases/db42/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/databases/db42/Makefile b/databases/db42/Makefile index 39e37a5..2ff31bb 100644 --- a/databases/db42/Makefile +++ b/databases/db42/Makefile @@ -30,4 +30,7 @@ CONFIGURE_ARGS= --enable-compat185 \ pre-patch: @${PERL} -pi -e 's|-lpthread|-pthread|g' ${WRKSRC}/${CONFIGURE_SCRIPT} +post-patch: + @${CHMOD} 755 ${WRKSRC}/${CONFIGURE_SCRIPT} + .include <bsd.port.mk> |