From 84d5ba706cc6f8fd16d3bd4bdc68e6957e50069a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?X=E2=84=B9=20Ruoyao?= Date: Wed, 5 Feb 2020 14:45:09 +0800 Subject: [PATCH] Makefile: add dependency so "make install" won't need -j1 Now due to a missing dependency, "make install" will fail if MAKEFLAGS="-j N" is set to $N > 1$. Add an additional dependency to fix it. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1a54c8c..9b48ff2 100644 --- a/Makefile +++ b/Makefile @@ -38,7 +38,7 @@ install_systemd: install -vm644 systemd/* ${DESTDIR}/lib/systemd/system; \ fi -install_man: +install_man: man install -vdm755 $(DESTDIR)$(MANDIR)/man8 install -vm644 make-ca.8 $(DESTDIR)$(MANDIR)/man8