Package: firmware-free Severity: serious Version: 20241210-3
Hi, building firmware-free fails to build from source... ---snip--- [...] make[3]: Entering directory '/build/firmware-free-20241210/cis' pack_cis -o 3CCFEM556.cis src/3CCFEM556.cis make[3]: pack_cis: No such file or directory [...] ---snap--- ...because pack_cis is in /usr/sbin which is not in the default path.Please consider either moving pack_cis in cis-tools to /usr/bin, or, calling pack_cis in firmware-free with full path (patch attached).
Regards, Daniel
Author: Daniel Baumann <[email protected]> Description: Call pack_cis with full path as it's not in the default path to fix FTBFS. diff -Naurp firmware-free.orig/cis/Makefile firmware-free/cis/Makefile --- firmware-free.orig/cis/Makefile +++ firmware-free/cis/Makefile @@ -1,6 +1,6 @@ # The pack_cis tool from cis-tools # <http://git.kernel.org/?p=utils/cis-tools/cis-tools.git>. -PACK_CIS = pack_cis +PACK_CIS = /usr/sbin/pack_cis CIS_SRC := $(wildcard src/*.cis) CIS_BIN := $(notdir $(CIS_SRC))

