From 558863156ae96b75e3aea15cbf83c2f9102852e5 Mon Sep 17 00:00:00 2001 From: Adam Spiers Date: Wed, 28 Jan 2015 22:10:43 +0000 Subject: [PATCH] Makefile: fix dependency of install target `make install` should always work even there was no preceding `make` or `make build`, but `$(INSTALL_PREREQUISITES)` was not defined anywhere, so running `make install` directly caused `test -f roundup` to fail. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0752193..db54d5f 100644 --- a/Makefile +++ b/Makefile @@ -72,7 +72,7 @@ else exit 1 endif -install: $(INSTALL_PREREQUISITES) +install: build test -f roundup mkdir -p "$(bindir)" cp roundup "$(bindir)/roundup"