summaryrefslogtreecommitdiff
path: root/lang/guile/Makefile
diff options
context:
space:
mode:
authorMuhammad Moinur Rahman <bofh@FreeBSD.org>2022-12-13 07:36:08 -0600
committerMuhammad Moinur Rahman <bofh@FreeBSD.org>2022-12-13 08:00:42 -0600
commitfd16053f4e657f0aabca874ec8316ade045c7b99 (patch)
tree9eb78c26184dcc4486684a7d59f7e66ba9f4b387 /lang/guile/Makefile
parentdevel/py-jsonschema: Update version 4.12.0=>4.13.0 (diff)
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
Diffstat (limited to '')
-rw-r--r--lang/guile/Makefile8
1 files 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>