diff options
author | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2020-08-30 20:23:02 +0000 |
---|---|---|
committer | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2020-08-30 20:23:02 +0000 |
commit | 0261513768a934dec0317a3fb8e6fd76827b61f9 (patch) | |
tree | 293608aa0fa1e535f917e9f5c892df1f74567756 | |
parent | Update to 7.18.1 (diff) |
Fix cross-build with qemu-user-static
PR: 248829
Submitted by: Christian Ullrich <chris@chrullrich.net>
Notes
Notes:
svn path=/head/; revision=547121
-rw-r--r-- | shells/bash-completion/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/shells/bash-completion/Makefile b/shells/bash-completion/Makefile index c7c438febff7..2347ceba5f4e 100644 --- a/shells/bash-completion/Makefile +++ b/shells/bash-completion/Makefile @@ -45,6 +45,11 @@ CMAKE_MODULES_DESC= Install bash-completion modules for cmake BASH_SHARED_RUN_DEPENDS=bash:shells/bash BASH_STATIC_RUN_DEPENDS=bash:shells/bash-static +.include <bsd.port.pre.mk> + +# See PR 248829 for details +MAKE_CMD= ${LOCALBASE}/bin/gmake + post-patch: @${REINPLACE_CMD} \ -e '/^profiledir =/ s|(sysconfdir)/profile.d|(prefix)/share/bash-completion|' \ @@ -74,4 +79,4 @@ do-test: -cd ${WRKSRC}/test && bash ${test} .endfor -.include <bsd.port.mk> +.include <bsd.port.post.mk> |