git: ba5de232fe34 - main - x11/cde: Handle undstrippable outputs

From: Cy Schubert <cy_at_FreeBSD.org>
Date: Sat, 22 Jan 2022 16:00:25 UTC
The branch main has been updated by cy:

URL: https://cgit.FreeBSD.org/ports/commit/?id=ba5de232fe34dc71085e96d1df7937bea080f4d6

commit ba5de232fe34dc71085e96d1df7937bea080f4d6
Author:     Cy Schubert <cy@FreeBSD.org>
AuthorDate: 2022-01-22 15:54:28 +0000
Commit:     Cy Schubert <cy@FreeBSD.org>
CommitDate: 2022-01-22 16:00:01 +0000

    x11/cde: Handle undstrippable outputs
    
    Stripping unstrippable files results in ecp.* files. Deal with the
    fallout.
    
    PR:             261359, 261359
---
 x11/cde/Makefile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/x11/cde/Makefile b/x11/cde/Makefile
index 0a2b800647d8..40e28fb6aadc 100644
--- a/x11/cde/Makefile
+++ b/x11/cde/Makefile
@@ -11,7 +11,6 @@ LICENSE=	LGPL21
 BROKEN_mips64=		fails to build: ./config/imake/imake: No such file or directory
 BROKEN_powerpc64=	fails to build: ./config/imake/imake: No such file or directory
 BROKEN_i386=		cannot bind to a temporary of type va_list
-BROKEN_armv7=		STAGEDIR contains intermediate install files
 
 BUILD_DEPENDS=	ksh93:shells/ksh93			\
 		bdftopcf:x11-fonts/bdftopcf		\
@@ -122,5 +121,7 @@ do-install:
 
 post-install:
 	${FIND} ${STAGEDIR}/${PREFIX}/dt -type f -exec ${SH} -c '${STRIP_CMD} {} > /dev/null 2>&1' \;
+	# Only a problem on armv7 so far
+	${FIND} ${STAGEDIR}/${PREFIX}/dt -type f -name 'exp.*' -delete
 
 .include <bsd.port.post.mk>