summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2016-07-17 00:31:53 +0200
committertv <tv@krebsco.de>2016-07-17 00:53:21 +0200
commit9c4ed31565f3491f055963bcd7869bd0c1e62aa5 (patch)
tree477efa402e01eb3504b672407967f7c8b5aa7de5
parent6f51a211251c40846b9a68666a3dd4f7a02aec67 (diff)
make populate: drop redundant variable: source
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index be069ec3e..064cba484 100644
--- a/Makefile
+++ b/Makefile
@@ -84,10 +84,10 @@ ifeq ($(debug),true)
populate: populate-flags = --debug
endif
populate:
- source=$$($(call evaluate,config.krebs.build.source) --json --strict) && \
- echo $$source | populate \
- $(target_user)@$(target_host):$(target_port)$(target_path) \
- $(populate-flags)
+ $(call evaluate,config.krebs.build.source) --json --strict | \
+ populate \
+ $(target_user)@$(target_host):$(target_port)$(target_path) \
+ $(populate-flags)
# usage: make build.pkgs.get
build build.:;@$(call build,$${expr-eval})