From 0a20201c49b8553b3944675c17bedfb223b1e90d Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Thu, 22 Nov 2018 20:55:12 -0500 Subject: [PATCH] Fix up the automatic plist for the trident-icons port. Now it specifically excludes dirs, but will find files and symlinks to get *all* the icons. --- pkg/TrueOS/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/TrueOS/Makefile b/pkg/TrueOS/Makefile index 852202a..30dc7fb 100644 --- a/pkg/TrueOS/Makefile +++ b/pkg/TrueOS/Makefile @@ -19,7 +19,7 @@ NO_BUILD= yes do-install: ${MKDIR} ${STAGEDIR}/usr/local/share/icons cd ${WRKSRC} && ${WRKSRC}/install-local.sh ${STAGEDIR}/usr/local/share/icons - (cd ${STAGEDIR}/; ${FIND} . \ + (cd ${STAGEDIR}/; ${FIND} . -not -type d \ | ${SED} -e 's,^\./,/,g' \ | ${AWK} '{print length, $$0}' | ${SORT} -rn \ | cut -d " " -f 2- \