From a2cd26a2e19231a26a82b03437c2a8d69cf73cea Mon Sep 17 00:00:00 2001 From: Greg Paussa <50457169+gpaussabrcm@users.noreply.github.com> Date: Sat, 14 Sep 2019 01:09:34 -0400 Subject: [PATCH] [build] Avoid race condition in sonic-platform-common (#3457) Both python2 and python3 wheels being built out of the same source directory can interfere with each other when SONIC_BUILD_JOBS > 1. Signed-off-by: Greg Paussa --- rules/sonic-platform-common.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rules/sonic-platform-common.mk b/rules/sonic-platform-common.mk index 95789354a4..043c820743 100644 --- a/rules/sonic-platform-common.mk +++ b/rules/sonic-platform-common.mk @@ -6,8 +6,9 @@ $(SONIC_PLATFORM_COMMON_PY2)_PYTHON_VERSION = 2 SONIC_PYTHON_WHEELS += $(SONIC_PLATFORM_COMMON_PY2) # Als build sonic-platform-common into python3 wheel, so we can use PSU code in SNMP docker -# Note: _DEPENDS macro is not defined SONIC_PLATFORM_COMMON_PY3 = sonic_platform_common-1.0-py3-none-any.whl $(SONIC_PLATFORM_COMMON_PY3)_SRC_PATH = $(SRC_PATH)/sonic-platform-common $(SONIC_PLATFORM_COMMON_PY3)_PYTHON_VERSION = 3 +# Synthetic dependency just to avoid race condition +$(SONIC_PLATFORM_COMMON_PY3)_DEPENDS = $(SONIC_PLATFORM_COMMON_PY2) SONIC_PYTHON_WHEELS += $(SONIC_PLATFORM_COMMON_PY3)