Makefile: If the user overrides HOSTS, don't install locally anyway.
authorMark Wooding <mdw@distorted.org.uk>
Thu, 13 Dec 2012 10:06:24 +0000 (10:06 +0000)
committerMark Wooding <mdw@distorted.org.uk>
Thu, 13 Dec 2012 10:06:24 +0000 (10:06 +0000)
Makefile

index b0f4612..1c48383 100644 (file)
--- 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 --------------------------------------------------