From 27a087ac3d8590cef76324fc3d8ce4b3724ea16a Mon Sep 17 00:00:00 2001 From: Petar Kapris Date: Thu, 10 Dec 2020 13:48:06 +0100 Subject: [PATCH] Add missing make dependency in `install' target The `install' target was missing the existence of a compiled executable in the directory as a dependency, it's been added. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 970c55c..6d58f0d 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ timeoutd: timeoutd.c clean: -rm -f timeoutd timeoutd.o -install: /etc/timeouts +install: timeoutd /etc/timeouts install timeoutd /usr/sbin/timeoutd install timeoutd.8 /usr/share/man/man8 install timeouts.5 /usr/share/man/man5