summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorKubeEdge Bot <48982446+kubeedge-bot@users.noreply.github.com>2021-01-13 16:55:45 +0800
committerGitHub <noreply@github.com>2021-01-13 16:55:45 +0800
commit29c26a61b3541331ae51917df83cbf6adcd7ea62 (patch)
tree425696f72ed28cded45522e7285270b68d18c6d3 /Makefile
parentMerge pull request #2496 from llhuii/fix-websocket-small-error (diff)
parentMakefile: fix OUT_DIR does not work (diff)
downloadkubeedge-29c26a61b3541331ae51917df83cbf6adcd7ea62.tar.gz
Merge pull request #2497 from llhuii/fix_makefile
Makefile: fix OUT_DIR does not work
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index ab112ca40..9de688fa3 100644
--- a/Makefile
+++ b/Makefile
@@ -16,7 +16,7 @@ COMPONENTS=cloud \
edge
.EXPORT_ALL_VARIABLES:
-OUT_DIR ?= _output
+OUT_DIR ?= _output/local
define ALL_HELP_INFO
# Build code.
@@ -44,7 +44,7 @@ all: clean
@echo "$$ALL_HELP_INFO"
else
all: verify-golang
- hack/make-rules/build.sh $(WHAT)
+ KUBEEDGE_OUTPUT_SUBPATH=$(OUT_DIR) hack/make-rules/build.sh $(WHAT)
endif