From: Michal Vasilek Date: Thu, 30 Sep 2021 19:30:08 +0000 (+0200) Subject: python3-package.mk: fix syntax error in FindStdlibDepends X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=d5212d38bc7b1402e8d07ff771ffbadd93cfcef3;p=openwrt-packages.git python3-package.mk: fix syntax error in FindStdlibDepends When running FindStdlib and running DependsCheckHostPipVersionMatch at the same time, both commands were joined together resulting in a syntax error. Signed-off-by: Michal Vasilek --- diff --git a/lang/python/python3-package.mk b/lang/python/python3-package.mk index 96fafe445..20c8ca58a 100644 --- a/lang/python/python3-package.mk +++ b/lang/python/python3-package.mk @@ -201,7 +201,7 @@ PYTHON3_PKG_HOST_PIP_INSTALL_ARGS = \ ) define Py3Build/FindStdlibDepends - $(SHELL) $(python3_mk_path)python3-find-stdlib-depends.sh -n "$(PKG_NAME)" "$(PKG_BUILD_DIR)" + $(SHELL) $(python3_mk_path)python3-find-stdlib-depends.sh -n "$(PKG_NAME)" "$(PKG_BUILD_DIR)"; endef ifneq ($(strip $(PYPI_NAME)),)