git: 42b8f3c6826b - main - editors/libreoffice: fix share/man handling (+)
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 13 Feb 2024 22:49:42 UTC
The branch main has been updated by fluffy: URL: https://cgit.FreeBSD.org/ports/commit/?id=42b8f3c6826b6bd1d96c0da4df3f365a81c7b8a7 commit 42b8f3c6826b6bd1d96c0da4df3f365a81c7b8a7 Author: Dima Panov <fluffy@FreeBSD.org> AuthorDate: 2024-02-13 22:38:30 +0000 Commit: Dima Panov <fluffy@FreeBSD.org> CommitDate: 2024-02-13 22:49:34 +0000 editors/libreoffice: fix share/man handling (+) Restore a small block of subdirs handling code introduced by man => share/man transition and accidentally lost during update merge Reported by: diizzy, poudriere fallout Sponsored by: Serenity Cybersecurity, LLC --- editors/libreoffice/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/editors/libreoffice/Makefile b/editors/libreoffice/Makefile index d6ab748656cb..2bd0510f7f6a 100644 --- a/editors/libreoffice/Makefile +++ b/editors/libreoffice/Makefile @@ -409,8 +409,8 @@ post-install: ${FIND} -s lib/libreoffice -type d -empty \ -exec ${ECHO_CMD} "@dir {}" \; >> ${TMPPLIST} @cd ${STAGEDIR}${PREFIX} && \ - ${FIND} -s bin lib man -not -type d >> ${TMPPLIST} -.for subdir in applications bash-completion icons metainfo mime + ${FIND} -s bin lib -not -type d >> ${TMPPLIST} +.for subdir in applications bash-completion icons man metainfo mime @cd ${STAGEDIR}${PREFIX} && \ ${FIND} -s share/${subdir} -not -type d >> ${TMPPLIST} .endfor