This is an automated email from the ASF dual-hosted git repository. pkarashchenko pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git
commit bff3c2308cb0013426870322ab3ffaf41d3d7d47 Author: Xiang Xiao <[email protected]> AuthorDate: Wed May 31 00:52:03 2023 +0800 mm/tlsf: git clone https instead git to avoid ci fail with "error: cannot run ssh: No such file or directory" Signed-off-by: Xiang Xiao <[email protected]> --- mm/tlsf/Make.defs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mm/tlsf/Make.defs b/mm/tlsf/Make.defs index 616bcff61b..c342c36191 100644 --- a/mm/tlsf/Make.defs +++ b/mm/tlsf/Make.defs @@ -25,7 +25,7 @@ ifeq ($(CONFIG_MM_TLSF_MANAGER),y) TLSF = tlsf/tlsf/.git $(TLSF): $(Q) echo "Downloading: tlsf" - $(Q) git clone [email protected]:mattconte/tlsf.git tlsf/tlsf + $(Q) git clone https://github.com/mattconte/tlsf.git tlsf/tlsf $(Q) patch -p0 < tlsf/0001-Add-TLSF_API-and-tlsf_printf.patch $(Q) patch -p0 < tlsf/0002-Define-_DEBUG-to-0-if-not-done-yet.patch $(Q) patch -p0 < tlsf/0003-Support-customize-FL_INDEX_MAX-to-reduce-the-memory-.patch
