[Bug 268652] Qt5: Some apps fails to start after upgrading to 5.15.8

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Sun Oct 15 08:57:25 BST 2023


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=268652

--- Comment #78 from Tomoaki AOKI <junchoon at dec.sakura.ne.jp> ---
(In reply to Tatsuki Makino from comment #76)

Comment for this separately. :=)

> The following is unrelated.
> I sometimes delete files in /usr/local/lib/compat/pkg with the following command.
> 
> find -L -d -s -x -- /usr/local/lib/compat/pkg/ \( -type d -empty -or -type l -or -not -type d -atime +4w \) -exec rm -i -r -v -- {} \;

This time, I've moved Qt5-related remnants in /usr/local/lib/compat/pkg
manually, so not tested, but what about below limited to Qt* components?

find -L -d -s -x -- /usr/local/lib/compat/pkg/ \( -type d -empty -or -type l
-or -not -type d -atime +4w \) -iname \*qt\* -exec rm -i -r -v -- {} \;

Or if deletion is not wanted and /usr/local/lib/compat/pkg.qt5 is not in
library path,

find -L -d -s -x -- /usr/local/lib/compat/pkg/ \( -type d -empty -or -type l
-or -not -type d -atime +4w \) -iname \*qt\* -exec mv -i -v {}
/usr/local/lib/compat/pkg.qt5 \;

would work, if I understand man pages correctly.

-- 
You are receiving this mail because:
You are on the CC list for the bug.


More information about the kde-freebsd mailing list