diff options
| author | KubeEdge Bot <48982446+kubeedge-bot@users.noreply.github.com> | 2021-01-13 16:55:45 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-13 16:55:45 +0800 |
| commit | 29c26a61b3541331ae51917df83cbf6adcd7ea62 (patch) | |
| tree | 425696f72ed28cded45522e7285270b68d18c6d3 /Makefile | |
| parent | Merge pull request #2496 from llhuii/fix-websocket-small-error (diff) | |
| parent | Makefile: fix OUT_DIR does not work (diff) | |
| download | kubeedge-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-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |
