diff options
author | wg <wg@FreeBSD.org> | 2013-12-15 21:37:14 +0800 |
---|---|---|
committer | wg <wg@FreeBSD.org> | 2013-12-15 21:37:14 +0800 |
commit | b8af5ad620b9d925cf99621fb3a07e8c60d224a0 (patch) | |
tree | deecd15da903cf0939c419ee4c34221277cb2ace /net | |
parent | 9d90be6b8729550b44b06f8bdedfcfb0f4cdaa9b (diff) | |
download | freebsd-ports-gnome-b8af5ad620b9d925cf99621fb3a07e8c60d224a0.tar.gz freebsd-ports-gnome-b8af5ad620b9d925cf99621fb3a07e8c60d224a0.tar.zst freebsd-ports-gnome-b8af5ad620b9d925cf99621fb3a07e8c60d224a0.zip |
net/samba4: fix usage of python to remove implicit dependency
Reported by: exp-run (PR 184591)
Approved by: portmgr (blanket)
Diffstat (limited to 'net')
-rw-r--r-- | net/samba4/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/samba4/Makefile b/net/samba4/Makefile index 0faee54ff982..45090e03df92 100644 --- a/net/samba4/Makefile +++ b/net/samba4/Makefile @@ -471,7 +471,7 @@ post-patch: ${PATCH_WRKSRC}/dynconfig/config.m4 # Make sure that the right version of Python is used by the tools # https://bugzilla.samba.org/show_bug.cgi?id=7305 - @for f in ${PATCH_WRKSRC}/source4/scripting/bin/*; do \ + @for f in ${PATCH_WRKSRC}/source4/scripting/bin/* ${WRKSRC}/${WAF_TOOL}; do \ ${REINPLACE_CMD} -e '1,1 s|.*python.*|#!${PYTHON_CMD}|' $${f}; \ done |