[platform mellanox] Substitute '-' symbol to '.' in Mellanox SDK version to prevent problems with finding deb package (#5756)
In case of non-GA SDK version there is '-' symbol in Mellanox SDK version name. (For example: 4.4.1306-006) In appropriate .deb packet there is '.' instead of '-'. Because of this there was problem while building SDK Signed-off-by: Andriy Yurkiv <ayurkiv@nvidia.com>
This commit is contained in:
parent
83d090f42c
commit
8100711531
@ -3,7 +3,7 @@ MLNX_SDK_PKG_BASE_PATH = $(MLNX_SDK_BASE_PATH)/$(BLDENV)/
|
||||
MLNX_SDK_VERSION = 4.4.1956
|
||||
MLNX_SDK_ISSU_VERSION = 101
|
||||
|
||||
MLNX_SDK_DEB_VERSION = $(subst _,.,$(MLNX_SDK_VERSION))
|
||||
MLNX_SDK_DEB_VERSION = $(subst -,.,$(subst _,.,$(MLNX_SDK_VERSION)))
|
||||
|
||||
# Place here URL where SDK sources exist
|
||||
MLNX_SDK_SOURCE_BASE_URL =
|
||||
|
Loading…
Reference in New Issue
Block a user