[Bug 273291] www/firefox: Crashes on start after upgrading from 116.0.3_1,2 to 117.0,2
Date: Mon, 28 Aug 2023 09:14:06 UTC
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=273291 --- Comment #4 from Tomoaki AOKI <junchoon@dec.sakura.ne.jp> --- Additional note. I've checked, to be sure, no pkgs for non-14 base is remaining with a stupid script below. At first run, some pkgs for old base remained, so I've checked if I no longer use it, or no ports I need requires it directly or indirectly and deinstalled them. After deinstalling, I've deleted firefox-117* from poudriere repo and rebuilt it to be sure. #!/bin/sh CURVERS=14 TMPLIST=/tmp/pkglist pkg version -o | cut -f 1 -w > ${TMPLIST} cat ${TMPLIST} | while read PACKAGE do ARCH=`pkg query %q ${PACKAGE}` if [ ${CURVERS} != `echo ${ARCH} | cut -f 2 -d :` ] then echo Port ${PACKAGE} : ${ARCH} fi done -- You are receiving this mail because: You are the assignee for the bug.