f65a071410
Fix marvell sai package version parsing issue (#10009)
10 lines
284 B
Makefile
10 lines
284 B
Makefile
.ONESHELL:
|
|
SHELL = /bin/bash
|
|
.SHELLFLAGS += -e
|
|
|
|
MRVL_SAI_URL = https://github.com/Marvell-switching/sonic-marvell-binaries/raw/master/armhf/sai-plugin/$(MRVL_SAI_PACKAGE)
|
|
|
|
$(addprefix $(DEST)/, $(MRVL_SAI)): $(DEST)/% :
|
|
# get deb package
|
|
wget -O $(DEST)/$(MRVL_SAI) $(MRVL_SAI_URL)
|