From 7c4a62ed27300d1f0f08ee8036bebde54590a9b6 Mon Sep 17 00:00:00 2001 From: richardyu-ms Date: Sun, 4 Dec 2022 02:01:27 -0800 Subject: [PATCH] [SAI-PTF]Fix issue when transfer make parameter GEN_SAIRPC_OPTS Fix issue when transfer make param GEN_SAIRPC_OPTS with space in it when transfer GEN_SAIRPC_OPTS with multi parameters in it and use the space to split it, there is a issue for translate from build system to actual make system. ``` --adapter_logger --skip_error=-2 ``` add quota when transfer the parameter Test Done: Verified in local container Verified in build system Signed-off-by: richardyu-ms --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 691dba474..164ae2603 100644 --- a/Makefile +++ b/Makefile @@ -43,7 +43,7 @@ test: make -C test saithrift-build: - SAIRPC_EXTRA_LIBS="$(SAIRPC_EXTRA_LIBS)" GEN_SAIRPC_OPTS=$(GEN_SAIRPC_OPTS) make -C $(SAITHRIFT_PATH) + SAIRPC_EXTRA_LIBS="$(SAIRPC_EXTRA_LIBS)" GEN_SAIRPC_OPTS="$(GEN_SAIRPC_OPTS)" make -C $(SAITHRIFT_PATH) saithrift-install: saithrift-build make -C $(SAITHRIFT_PATH) install