From abd5d4f8c822105a52f57751f970b331e65943c9 Mon Sep 17 00:00:00 2001 From: netblue30 Date: Tue, 25 Jun 2019 17:12:37 -0400 Subject: [PATCH] docs update: pkg-config package required on Debian/Ubuntu when running ./configure --apparmor --- README | 6 ++++-- README.md | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/README b/README index 4d488dbae..55edc0ebe 100644 --- a/README +++ b/README @@ -23,9 +23,11 @@ $ git clone https://github.com/netblue30/firejail.git $ cd firejail $ ./configure && make && sudo make install-strip -On Debian/Ubuntu you will need to install git and a compiler: +On Debian/Ubuntu you will need to install git and gcc compiler. AppArmor +development libraries and pkg-config are required when using --apparmor +./configure option: -$ sudo apt-get install build-essential +$ sudo apt-get install git build-essential libapparmor-dev pkg-config diff --git a/README.md b/README.md index 46370e6a5..f0cecd1e7 100644 --- a/README.md +++ b/README.md @@ -45,9 +45,11 @@ $ git clone https://github.com/netblue30/firejail.git $ cd firejail $ ./configure && make && sudo make install-strip ````` -On Debian/Ubuntu you will need to install git and a compiler: +On Debian/Ubuntu you will need to install git and gcc compiler. AppArmor +development libraries and pkg-config are required when using --apparmor +./configure option: ````` -$ sudo apt-get install git build-essential +$ sudo apt-get install git build-essential libapparmor-dev pkg-config `````