[Bug 276151] gpu-firmware-intel-kmod fails to update revision number
Date: Sun, 07 Jan 2024 13:33:58 UTC
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=276151
--- Comment #8 from Joel Rodriguez <joel@tahoestores.com> ---
From my point of view it is a hack. The reason is that the normal flow of
make clean
make
make deinstall
make install
is now replace with
make clean
make flavor=
make flavor= deinstall
make flavor= install
as in
print "Making... ";
# add this make hack to gpu-firmware-intel-kmod
# for flavor in $(make -V FLAVORS); do
#make FLAVOR=${flavor} install clean
#done
if ($entity eq "gpu-firmware-intel-kmod") {
$cmd = "make FLAVOR=kabylake >> pkgupdate.err 2>&1";
} else {
$cmd = "make >> pkgupdate.err 2>&1";
}
if (system($cmd)) {
print "WARNING - make failed in $whereis\n";
next;
}
The only other time I see having to add a parameter to 'make' is when there is
a security violation. I review those by hand.
But thanks for the info, it cleans up my scripts which key off of the results
of pkg.
--
You are receiving this mail because:
You are the assignee for the bug.