fix syncd rpc make files

This commit is contained in:
kram 2018-01-17 17:26:24 -08:00
parent 6998c2113b
commit 176c8c58cb
2 changed files with 2 additions and 3 deletions

View File

@ -57,7 +57,6 @@ SONIC_BUILD_INSTRUCTION := make \
BUILD_NUMBER=$(BUILD_NUMBER) \
ENABLE_DHCP_GRAPH_SERVICE=$(ENABLE_DHCP_GRAPH_SERVICE) \
SHUTDOWN_BGP_ON_START=$(SHUTDOWN_BGP_ON_START) \
ENABLE_SYNCD_RPC=$(ENABLE_SYNCD_RPC) \
PASSWORD=$(PASSWORD) \
USERNAME=$(USERNAME)

View File

@ -4,7 +4,7 @@ FROM docker-syncd-bfn
ENV DEBIAN_FRONTEND=noninteractive
COPY \
{% for deb in docker_syncd_bfn.split(' ') -%}
{% for deb in docker_syncd_bfn_rpc_debs.split(' ') -%}
debs/{{ deb }}{{' '}}
{%- endfor -%}
debs/
@ -12,7 +12,7 @@ debs/
RUN dpkg -P syncd
RUN dpkg_apt() { [ -f $1 ] && { dpkg -i $1 || apt-get -y install -f; } || return 1; } ; \
{% for deb in docker_syncd_bfn.split(' ') -%}
{% for deb in docker_syncd_bfn_rpc_debs.split(' ') -%}
dpkg_apt debs/{{ deb }}{{'; '}}
{%- endfor %}