aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorLibravatar rusty-snake <41237666+rusty-snake@users.noreply.github.com>2020-06-11 22:13:25 +0200
committerLibravatar rusty-snake <41237666+rusty-snake@users.noreply.github.com>2020-06-11 22:13:25 +0200
commit50203c0783590819884b14d30bbb5f460e643a47 (patch)
tree67bace869a876a4f2a24816170f05fde49acc6f2 /Makefile.in
parentNew profiles: apostrophe & quadrapassel (diff)
downloadfirejail-50203c0783590819884b14d30bbb5f460e643a47.tar.gz
firejail-50203c0783590819884b14d30bbb5f460e643a47.tar.zst
firejail-50203c0783590819884b14d30bbb5f460e643a47.zip
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in
index f250f97e2..5e4aad041 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -122,14 +122,14 @@ ifeq ($(BUSYBOX_WORKAROUND),yes)
122endif 122endif
123 install -m 0755 -d $(DESTDIR)$(sysconfdir)/firejail 123 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 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
125 [ ! -f $(DESTDIR)$(sysconfdir)/firejail/login.users ] && install -m 0644 etc/login.users $(DESTDIR)$(sysconfdir)/firejail 125 sh -c "if [ ! -f $(DESTDIR)/$(sysconfdir)/firejail/login.users ]; then install -c -m 0644 etc/login.users $(DESTDIR)/$(sysconfdir)/firejail/.; fi;"
126ifeq ($(HAVE_APPARMOR),-DHAVE_APPARMOR) 126ifeq ($(HAVE_APPARMOR),-DHAVE_APPARMOR)
127 # install apparmor profile 127 # install apparmor profile
128 [ ! -d $(DESTDIR)$(sysconfdir)/apparmor.d ] && install -m 0755 -d $(DESTDIR)$(sysconfdir)/apparmor.d 128 sh -c "if [ ! -d $(DESTDIR)/$(sysconfdir)/apparmor.d ]; then install -d -m 755 $(DESTDIR)/$(sysconfdir)/apparmor.d; fi;"
129 install -m 0644 etc/apparmor/firejail-default $(DESTDIR)$(sysconfdir)/apparmor.d 129 install -m 0644 etc/apparmor/firejail-default $(DESTDIR)$(sysconfdir)/apparmor.d
130 [ ! -d $(DESTDIR)$(sysconfdir)/apparmor.d/local ] && install -m 0755 -d $(DESTDIR)$(sysconfdir)/apparmor.d/local 130 sh -c "if [ ! -d $(DESTDIR)/$(sysconfdir)/apparmor.d/local ]; then install -d -m 755 $(DESTDIR)/$(sysconfdir)/apparmor.d/local; fi;"
131 # install apparmor profile customization file 131 # install apparmor profile customization file
132 [ ! -f $(DESTDIR)$(sysconfdir)/apparmor.d/local/firejail-local ] && install -m 0644 etc/apparmor/firejail-local $(DESTDIR)$(sysconfdir)/apparmor.d/local 132 sh -c "if [ ! -f $(DESTDIR)/$(sysconfdir)/apparmor.d/local/firejail-local ]; then install -c -m 0644 etc/apparmor/firejail-local $(DESTDIR)/$(sysconfdir)/apparmor.d/local/.; fi;"
133endif 133endif
134 # man pages 134 # man pages
135 install -m 0755 -d $(DESTDIR)$(mandir)/man1 $(DESTDIR)$(mandir)/man5 135 install -m 0755 -d $(DESTDIR)$(mandir)/man1 $(DESTDIR)$(mandir)/man5