Date: Sun, 15 Oct 2023 07:57:25 +0000 From: bugzilla-noreply@freebsd.org To: multimedia@FreeBSD.org Subject: [Bug 268652] Qt5: Some apps fails to start after upgrading to 5.15.8 Message-ID: <bug-268652-12827-kMC5xBxe90@https.bugs.freebsd.org/bugzilla/> In-Reply-To: <bug-268652-12827@https.bugs.freebsd.org/bugzilla/>
index | next in thread | previous in thread | raw e-mail
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=268652 --- Comment #78 from Tomoaki AOKI <junchoon@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.home | help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-268652-12827-kMC5xBxe90>
