From c35fed329dc8c33e4e203d6296254fa16845f057 Mon Sep 17 00:00:00 2001 From: olszomal Date: Tue, 11 Aug 2026 14:55:40 +0200 Subject: [PATCH] Document bootstrap step for Git builds --- INSTALL.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/INSTALL.md b/INSTALL.md index 42c9a714..c462e41c 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -1,5 +1,6 @@ # libp11 Installation -The following instructions only apply to the [release tarballs.](https://github.com/OpenSC/libp11/releases) +The following instructions apply to the [release tarballs](https://github.com/OpenSC/libp11/releases) +and builds from the Git repository. ## Unix Build @@ -8,6 +9,12 @@ On Debian/Ubuntu use: sudo apt install pkgconf libssl-dev +When building from the Git repository, install the Autotools packages and run `./bootstrap` first: + + sudo apt install autoconf automake libtool + + ./bootstrap + Configure and build libp11: ./configure && make