From 0dac7b2b664a517754df938c2cf9df62c0f47b57 Mon Sep 17 00:00:00 2001 From: Thomas Debesse Date: Sun, 7 Mar 2021 00:24:50 +0100 Subject: [PATCH] freebsd: exclude more libraries when bundling --- library-bundler | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/library-bundler b/library-bundler index 756ebf89..235734ea 100755 --- a/library-bundler +++ b/library-bundler @@ -103,6 +103,11 @@ Multi::excludeLdd () { | egrep -q '/libatk|/libgdk|/libgtk|/libgio|/libglib|/libgmodule|/libgobject|/libcairo|/libpango|/libfontconfig|/libfreetype' then Common::noOp + # FreeBSD specific + elif echo "${ldd_line}" \ + | egrep -q '/libc++|/libgxxrt' + then + Common::noOp else echo "${ldd_line}" fi -- 2.39.2