git: 10c4044d9131 - 2022Q4 - lang/guile: Fix runtime
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 13 Dec 2022 14:03:25 UTC
The branch 2022Q4 has been updated by bofh: URL: https://cgit.FreeBSD.org/ports/commit/?id=10c4044d91318236f432cadbc74c2acf325f93a1 commit 10c4044d91318236f432cadbc74c2acf325f93a1 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:03:11 +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 (cherry picked from commit fd16053f4e657f0aabca874ec8316ade045c7b99) --- lang/guile/Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lang/guile/Makefile b/lang/guile/Makefile index 109876a38be2..c7ad5399c460 100644 --- a/lang/guile/Makefile +++ b/lang/guile/Makefile @@ -1,5 +1,6 @@ PORTNAME= guile PORTVERSION= 3.0.8 +PORTREVISION= 3 CATEGORIES= lang scheme MASTER_SITES= GNU @@ -63,7 +64,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>