diff options
| author | Juraj Lutter <otis@FreeBSD.org> | 2026-05-02 05:52:02 +0000 |
|---|---|---|
| committer | Matthias Fechner <mfechner@FreeBSD.org> | 2026-05-14 06:26:19 +0000 |
| commit | be615873847f32eaf1ba679dc0895982ee30580f (patch) | |
| tree | 655c615f3ff6c8512f7d2601cf0d1746bc1c9d32 | |
| parent | dff7e994d1110261d5474728bea1a71d6a712390 (diff) | |
devel/glab: fix poudriere build as none-root user
(cherry picked from commit b366db523e470f6bb9d5b2f182ba8f4333cea989)
| -rw-r--r-- | devel/glab/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/glab/Makefile b/devel/glab/Makefile index 842c1b9a4ad7..39d31a822863 100644 --- a/devel/glab/Makefile +++ b/devel/glab/Makefile @@ -53,7 +53,7 @@ pre-build: post-install-COMPLETIONS-on: .for _shell in bash fish zsh - ${GO_WRKDIR_BIN}/${PORTNAME} completion -s ${_shell} \ + ${SETENV} HOME=${WRKDIR} ${GO_WRKDIR_BIN}/${PORTNAME} completion -s ${_shell} \ >${STAGEDIR}${PREFIX}/${COMPLETIONS_PLIST_FILES:M*${_shell}*} .endfor @@ -63,7 +63,7 @@ post-install-DOCS-on: ${STAGEDIR}${DOCSDIR} post-install-MANPAGES-on: - (cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${GO_ENV} ${GO_CMD} run \ + (cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${GO_ENV} HOME=${WRKDIR} ${GO_CMD} run \ ./cmd/gen-docs --manpage --path ${STAGEDIR}${PREFIX}/share/man/man1) .include <bsd.port.mk> |
