adding --enable-apparmor by default for make deb - most Debian-based distros have apparmor enabled by default

This commit is contained in:
netblue30 2022-06-03 09:52:23 -04:00
parent e8cb03cde8
commit 494b26d504
2 changed files with 5 additions and 1 deletions

4
README
View file

@ -33,6 +33,10 @@ $ sudo apt-get install git build-essential libapparmor-dev pkg-config gawk
For --selinux option, add libselinux1-dev (libselinux-devel for Fedora).
We build our release firejail.tar.xz and firejail.deb packages using the following command:
$ make distclean && ./configure && make deb
Maintainer:
- netblue30 (netblue30@protonmail.com)

View file

@ -28,7 +28,7 @@ echo "*****************************************"
tar -xJvf "$CODE_ARCHIVE"
#mkdir -p "$INSTALL_DIR"
cd "$CODE_DIR"
./configure --prefix=/usr "$@"
./configure --prefix=/usr --enable-apparmor "$@"
make -j2
mkdir debian
DESTDIR=debian make install-strip