diff options
author | 2024-09-28 09:52:49 +0000 | |
---|---|---|
committer | 2024-09-28 20:52:18 +0300 | |
commit | dc1a41195b382342d81441b551eaec18a4d5a77b (patch) | |
tree | 1b65eb63cda03be3e847839d49c9e1af094a9f42 /Makefile | |
parent | f3c6c14c8496b2b37726a38ef2181a62bdbf7f10 (diff) | |
download | newsboat-dc1a41195b382342d81441b551eaec18a4d5a77b.tar.gz newsboat-dc1a41195b382342d81441b551eaec18a4d5a77b.tar.zst newsboat-dc1a41195b382342d81441b551eaec18a4d5a77b.zip |
makefile: use MKDIR variable everywhere
Signed-off-by: Ludovico Gerardi <ludovico.gerardi@posteo.it>
Diffstat (limited to '')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -361,7 +361,7 @@ install-docs: doc $(MKDIR) $(DESTDIR)$(docdir) $(INSTALL) -m 644 doc/xhtml/* $(DESTDIR)$(docdir) $(INSTALL) -m 644 CHANGELOG.md $(DESTDIR)$(docdir) - find contrib/ -type d -print0 | xargs -0 -I@ mkdir -p $(DESTDIR)$(docdir)/@ + find contrib/ -type d -print0 | xargs -0 -I@ $(MKDIR) $(DESTDIR)$(docdir)/@ find contrib/ -type f -perm /0111 -print0 | xargs -0 -I@ install -m 755 @ $(DESTDIR)$(docdir)/@ find contrib/ -type f ! -perm /0111 -print0 | xargs -0 -I@ install -m 644 @ $(DESTDIR)$(docdir)/@ $(MKDIR) $(DESTDIR)$(mandir)/man1 |