Skip to content

Commit 77f6316

Browse files
Release: Fix a bug when Linux images are disabled
There was a bug, where release.mk would try to upload the Linux image even though Linux images are disabled. This patches fixes broken dependency. Signed-off-by: Anton Kolesov <[email protected]>
1 parent e7204ce commit 77f6316

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

release.mk

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -969,9 +969,13 @@ $(patsubst arc_gnu_$(RELEASE)_%_install,%,$(DEPLOY_BUILD_ARTIFACTS)))
969969

970970
# Create a symlink
971971
.PHONY: deploy-build
972-
deploy-build: .deploy-toolchain-build .deploy-linux-images
972+
deploy-build: .deploy-toolchain-build
973973
$(DEPLOY_BUILD_LINK_CMD)
974974

975+
ifeq ($(ENABLE_LINUX_IMAGES),y)
976+
deploy-build: .deploy-linux-images
977+
endif
978+
975979

976980
#
977981
# Upload

0 commit comments

Comments
 (0)