git: fd16053f4e65 - main - lang/guile: Fix runtime
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 13 Dec 2022 14:00:51 UTC
The branch main has been updated by bofh: URL: https://cgit.FreeBSD.org/ports/commit/?id=fd16053f4e657f0aabca874ec8316ade045c7b99 commit fd16053f4e657f0aabca874ec8316ade045c7b99 Author: Muhammad Moinur Rahman <bofh@FreeBSD.org> AuthorDate: 2022-12-13 13:36:08 +0000 Commit: Muhammad Moinur Rahman <bofh@FreeBSD.org> CommitDate: 2022-12-13 14:00:42 +0000 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 --- lang/guile/Makefile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/lang/guile/Makefile b/lang/guile/Makefile index 0c0d08f81176..1abd1323931d 100644 --- a/lang/guile/Makefile +++ b/lang/guile/Makefile @@ -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>