From: Mark Wooding Date: Thu, 13 Dec 2012 10:06:24 +0000 (+0000) Subject: Makefile: If the user overrides HOSTS, don't install locally anyway. X-Git-Url: https://git.distorted.org.uk/~mdw/firewall/commitdiff_plain/243e9e1bf6021a87856f6e96eb581cef58c46d21 Makefile: If the user overrides HOSTS, don't install locally anyway. --- diff --git a/Makefile b/Makefile index b0f4612..1c48383 100644 --- a/Makefile +++ b/Makefile @@ -165,7 +165,7 @@ $(addprefix install/, $(OTHERHOSTS)): install/%: %.sh $(ROOT) ssh root@$* rm -f $(FIREWALL).new ## General installation target. -install: all install/$(THISHOST) $(addprefix install/,$(HOSTS)) +install: all $(addprefix install/,$(HOSTS)) .PHONY: install $(addprefix install/,$(HOSTS)) ###----- That's all, folks --------------------------------------------------