Skip to content

Commit

Permalink
mkdeb.sh.in: stop enabling apparmor
Browse files Browse the repository at this point in the history
Since `make deb-apparmor` already exists, use that for now instead of
changing what `make deb` does.

This fixes CI.

Added on commit 494b26d ("adding --enable-apparmor by default for make
deb - most Debian-based distros have apparmor enabled by default",
2022-06-03).

Kind of relates to netblue30#5154.
  • Loading branch information
kmk3 committed Jun 5, 2022
1 parent 135e99f commit 1ed4afb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ $ 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
$ make distclean && ./configure && make deb-apparmor


Maintainer:
Expand Down
2 changes: 1 addition & 1 deletion mkdeb.sh.in
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ echo "*****************************************"
tar -xJvf "$CODE_ARCHIVE"
#mkdir -p "$INSTALL_DIR"
cd "$CODE_DIR"
./configure --prefix=/usr --enable-apparmor "$@"
./configure --prefix=/usr "$@"
make -j2
mkdir debian
DESTDIR=debian make install-strip
Expand Down

0 comments on commit 1ed4afb

Please sign in to comment.