aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorLibravatar smitsohu <smitsohu@gmail.com>2020-07-16 23:47:57 +0200
committerLibravatar smitsohu <smitsohu@gmail.com>2020-07-16 23:47:57 +0200
commitec194d2f70b09f332637c43f56dcab1f78a965da (patch)
treeb0b14cd74bcfb1e6452d451c5cff15febd527c76 /Makefile.in
parentfix #3501 (diff)
downloadfirejail-ec194d2f70b09f332637c43f56dcab1f78a965da.tar.gz
firejail-ec194d2f70b09f332637c43f56dcab1f78a965da.tar.zst
firejail-ec194d2f70b09f332637c43f56dcab1f78a965da.zip
fixing busybox workaround
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in
index 6988ae1d6..65dd430b5 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -117,12 +117,13 @@ endif
117 # documents 117 # documents
118 install -m 0755 -d $(DESTDIR)$(DOCDIR) 118 install -m 0755 -d $(DESTDIR)$(DOCDIR)
119 install -m 0644 -t $(DESTDIR)$(DOCDIR) COPYING README RELNOTES etc/templates/* 119 install -m 0644 -t $(DESTDIR)$(DOCDIR) COPYING README RELNOTES etc/templates/*
120ifeq ($(BUSYBOX_WORKAROUND),yes) 120 # profiles and settings
121 ./mketc.sh
122endif
123 install -m 0755 -d $(DESTDIR)$(sysconfdir)/firejail 121 install -m 0755 -d $(DESTDIR)$(sysconfdir)/firejail
124 install -m 0644 -t $(DESTDIR)$(sysconfdir)/firejail etc/profile-a-l/*.profile etc/profile-m-z/*.profile etc/inc/*.inc etc/net/*.net etc/firejail.config 122 install -m 0644 -t $(DESTDIR)$(sysconfdir)/firejail etc/profile-a-l/*.profile etc/profile-m-z/*.profile etc/inc/*.inc etc/net/*.net etc/firejail.config
125 sh -c "if [ ! -f $(DESTDIR)/$(sysconfdir)/firejail/login.users ]; then install -c -m 0644 etc/login.users $(DESTDIR)/$(sysconfdir)/firejail/.; fi;" 123 sh -c "if [ ! -f $(DESTDIR)/$(sysconfdir)/firejail/login.users ]; then install -c -m 0644 etc/login.users $(DESTDIR)/$(sysconfdir)/firejail/.; fi;"
124ifeq ($(BUSYBOX_WORKAROUND),yes)
125 ./mketc.sh $(DESTDIR)$(sysconfdir)/firejail/disable-common.inc
126endif
126ifeq ($(HAVE_APPARMOR),-DHAVE_APPARMOR) 127ifeq ($(HAVE_APPARMOR),-DHAVE_APPARMOR)
127 # install apparmor profile 128 # install apparmor profile
128 sh -c "if [ ! -d $(DESTDIR)/$(sysconfdir)/apparmor.d ]; then install -d -m 755 $(DESTDIR)/$(sysconfdir)/apparmor.d; fi;" 129 sh -c "if [ ! -d $(DESTDIR)/$(sysconfdir)/apparmor.d ]; then install -d -m 755 $(DESTDIR)/$(sysconfdir)/apparmor.d; fi;"