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.
This commit is contained in:
Xℹ Ruoyao 2020-02-05 14:45:09 +08:00
parent 294389bfc4
commit 84d5ba706c

View File

@ -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