diff options
author | Dima Panov <fluffy@FreeBSD.org> | 2024-02-14 01:38:30 +0300 |
---|---|---|
committer | Dima Panov <fluffy@FreeBSD.org> | 2024-02-14 01:49:34 +0300 |
commit | 42b8f3c6826b6bd1d96c0da4df3f365a81c7b8a7 (patch) | |
tree | 378c2177de2fea6748c0d1712f1cd8c52f8bc620 | |
parent | 8bb7615cb8505d854178f8f9090ccfe984085462 (diff) | |
download | freebsd-ports-42b8f3c6826b6bd1d96c0da4df3f365a81c7b8a7.zip |
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
-rw-r--r-- | editors/libreoffice/Makefile | 4 |
1 files 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 |