docs update: pkg-config package required on Debian/Ubuntu when running ./configure --apparmor

This commit is contained in:
netblue30 2019-06-25 17:12:37 -04:00
parent c3b38606c7
commit abd5d4f8c8
2 changed files with 8 additions and 4 deletions

6
README
View file

@ -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

View file

@ -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
`````