lang/guile: Fix runtime

Stripping the libs gives a runtime error. For now disabling the
post-install stripping.

PR:		265414
Reported by:	yuri
MFH:		2022Q4
This commit is contained in:
Muhammad Moinur Rahman 2022-12-13 07:36:08 -06:00
parent 189613189e
commit fd16053f4e
1 changed files with 5 additions and 3 deletions

View File

@ -1,6 +1,6 @@
PORTNAME= guile
PORTVERSION= 3.0.8
PORTREVISION= 2
PORTREVISION= 3
CATEGORIES= lang scheme
MASTER_SITES= GNU
@ -63,7 +63,9 @@ post-patch:
post-patch-THREADS-on:
@${REINPLACE_CMD} -e 's|bdw-gc|bdw-gc-threaded|g' ${WRKSRC}/configure
post-install:
@${FIND} ${STAGEDIR}${PREFIX}/lib -name "*.go" | ${XARGS} ${STRIP_CMD}
# Currently guile fails to run if libs are stripped. Will need to debug
# the case.
#post-install:
# @${FIND} ${STAGEDIR}${PREFIX}/lib -name "*.go" | ${XARGS} ${STRIP_CMD}
.include <bsd.port.mk>