Codebase list firejail / 77732dc
Cherry-pick patch to fix parallel build failures Reiner Herrmann 3 years ago
2 changed file(s) with 27 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 From 1329aff6a36053b64eb727a2432cf58a3a13ca51 Mon Sep 17 00:00:00 2001
1 From: Reiner Herrmann <reiner@reiner-h.de>
2 Date: Tue, 6 Oct 2020 20:04:45 +0200
3 Subject: [PATCH] build: let manpages depend on src/man target instead of
4 non-existing .man files
5
6 ---
7 Makefile.in | 2 +-
8 1 file changed, 1 insertion(+), 1 deletion(-)
9
10 diff --git a/Makefile.in b/Makefile.in
11 index fd427dc0..c00d20c6 100644
12 --- a/Makefile.in
13 +++ b/Makefile.in
14 @@ -43,7 +43,7 @@ $(MYDIRS):
15 $(MAKE) -C $@
16
17
18 -$(MANPAGES): $(wildcard src/man/*.man)
19 +$(MANPAGES): src/man
20 ./mkman.sh $(VERSION) src/man/$(basename $@).man $@
21
22 man: $(MANPAGES)
23 --
24 2.28.0
25
22 config-hardening.patch
33 apparmor-override.patch
44 selinux-crash.patch
5 build-manpages.patch