Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 15 Oct 2023 07:57:25 +0000
From:      bugzilla-noreply@freebsd.org
To:        office@FreeBSD.org
Subject:   [Bug 268652] Qt5:  Some apps fails to start after upgrading to 5.15.8
Message-ID:  <bug-268652-25061-oBxotS73RY@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-268652-25061@https.bugs.freebsd.org/bugzilla/>
References:  <bug-268652-25061@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D268652

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

Comment for this separately. :=3D)

> The following is unrelated.
> I sometimes delete files in /usr/local/lib/compat/pkg with the following =
command.
>=20
> find -L -d -s -x -- /usr/local/lib/compat/pkg/ \( -type d -empty -or -typ=
e 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.

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-268652-25061-oBxotS73RY>