aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2024-05-21 10:26:56 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2024-06-02 12:08:41 -0300
commit68d06a13599bc219148eb0517cf107a948ffa4e2 (patch)
treea8906578a25c10889437c8be449a93ccd13042b9
parentbuild: use -t in applicable install commands (diff)
downloadfirejail-68d06a13599bc219148eb0517cf107a948ffa4e2.tar.gz
firejail-68d06a13599bc219148eb0517cf107a948ffa4e2.tar.zst
firejail-68d06a13599bc219148eb0517cf107a948ffa4e2.zip
build: sort/split some install commands
For increased consistency and readability.
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 8a65f50ef..d93f28b22 100644
--- a/Makefile
+++ b/Makefile
@@ -230,8 +230,8 @@ ifeq ($(HAVE_CONTRIB_INSTALL),yes)
230 $(INSTALL) -m 0755 -t $(DESTDIR)$(libdir)/firejail contrib/*.py contrib/*.sh 230 $(INSTALL) -m 0755 -t $(DESTDIR)$(libdir)/firejail contrib/*.py contrib/*.sh
231 # vim syntax 231 # vim syntax
232 $(INSTALL) -m 0755 -d $(DESTDIR)$(datarootdir)/vim/vimfiles/ftdetect 232 $(INSTALL) -m 0755 -d $(DESTDIR)$(datarootdir)/vim/vimfiles/ftdetect
233 $(INSTALL) -m 0755 -d $(DESTDIR)$(datarootdir)/vim/vimfiles/syntax
234 $(INSTALL) -m 0644 -t $(DESTDIR)$(datarootdir)/vim/vimfiles/ftdetect contrib/vim/ftdetect/firejail.vim 233 $(INSTALL) -m 0644 -t $(DESTDIR)$(datarootdir)/vim/vimfiles/ftdetect contrib/vim/ftdetect/firejail.vim
234 $(INSTALL) -m 0755 -d $(DESTDIR)$(datarootdir)/vim/vimfiles/syntax
235 $(INSTALL) -m 0644 -t $(DESTDIR)$(datarootdir)/vim/vimfiles/syntax contrib/syntax/files/firejail.vim 235 $(INSTALL) -m 0644 -t $(DESTDIR)$(datarootdir)/vim/vimfiles/syntax contrib/syntax/files/firejail.vim
236 # gtksourceview language-specs 236 # gtksourceview language-specs
237 $(INSTALL) -m 0755 -d $(DESTDIR)$(datarootdir)/gtksourceview-5/language-specs 237 $(INSTALL) -m 0755 -d $(DESTDIR)$(datarootdir)/gtksourceview-5/language-specs
@@ -269,8 +269,9 @@ ifeq ($(HAVE_APPARMOR),-DHAVE_APPARMOR)
269endif 269endif
270ifneq ($(HAVE_MAN),no) 270ifneq ($(HAVE_MAN),no)
271 # man pages 271 # man pages
272 $(INSTALL) -m 0755 -d $(DESTDIR)$(mandir)/man1 $(DESTDIR)$(mandir)/man5 272 $(INSTALL) -m 0755 -d $(DESTDIR)$(mandir)/man1
273 $(INSTALL) -m 0644 -t $(DESTDIR)$(mandir)/man1 $(MANPAGES1_GZ) 273 $(INSTALL) -m 0644 -t $(DESTDIR)$(mandir)/man1 $(MANPAGES1_GZ)
274 $(INSTALL) -m 0755 -d $(DESTDIR)$(mandir)/man5
274 $(INSTALL) -m 0644 -t $(DESTDIR)$(mandir)/man5 $(MANPAGES5_GZ) 275 $(INSTALL) -m 0644 -t $(DESTDIR)$(mandir)/man5 $(MANPAGES5_GZ)
275endif 276endif
276 # bash completion 277 # bash completion