These build tools are missing in minimal environments such as containers. By adding them to COMPILE.md, it is easier to build efibootguard.
Signed-off-by: Michael Adler <[email protected]> --- docs/COMPILE.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/COMPILE.md b/docs/COMPILE.md index efe30c1..39e5ae0 100644 --- a/docs/COMPILE.md +++ b/docs/COMPILE.md @@ -5,7 +5,11 @@ ### Arch Linux ### ``` +# libs pacman -S gnu-efi-libs pciutils check + +# build tools +pacman -S gcc make automake autoconf libtool pkg-config ``` ### Debian ### @@ -13,7 +17,11 @@ pacman -S gnu-efi-libs pciutils check Debian 8 or newer: ``` +# libs apt-get install gnu-efi libpci-dev check + +# build tools +apt-get install make automake autoconf libtool pkg-config ``` ## Compilation ## -- 2.33.1 -- You received this message because you are subscribed to the Google Groups "EFI Boot Guard" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/efibootguard-dev/20211110131613.353066-1-michael.adler%40siemens.com.
