Skip to content
This repository has been archived by the owner on Oct 13, 2023. It is now read-only.

[17.12] Pass VERSION to engine static builds #347

Merged
merged 1 commit into from Dec 12, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions components/packaging/static/Makefile
Expand Up @@ -50,10 +50,10 @@ static-cli:
$(MAKE) -C $(CLI_DIR) -f docker.Makefile VERSION=$(VERSION) build

static-engine:
$(MAKE) -C $(ENGINE_DIR) binary
$(MAKE) -C $(ENGINE_DIR) VERSION=$(VERSION) binary

cross-all-cli:
$(MAKE) -C $(CLI_DIR) -f docker.Makefile VERSION=$(VERSION) cross

cross-win-engine:
$(MAKE) -C $(ENGINE_DIR) DOCKER_CROSSPLATFORMS=windows/amd64 cross
$(MAKE) -C $(ENGINE_DIR) VERSION=$(VERSION) DOCKER_CROSSPLATFORMS=windows/amd64 cross