[Bug 276151] gpu-firmware-intel-kmod fails to update revision number

[email protected]
Newsgroups gmane.os.freebsd.devel.x11
Message-ID <[email protected]/bugzilla/>
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=276151

--- Comment #8 from Joel Rodriguez <[email protected]> ---
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.
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.