From 981afddee307ce039bbb1fdcd876418655f99412 Mon Sep 17 00:00:00 2001 From: liang yongxiang Date: Fri, 3 Aug 2018 16:29:13 +0800 Subject: [PATCH] [tools] fixed typo in MkDist_Strip --- tools/mkdist.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/mkdist.py b/tools/mkdist.py index beb01fecb..40a3928b1 100644 --- a/tools/mkdist.py +++ b/tools/mkdist.py @@ -234,8 +234,8 @@ def MkDist_Strip(program, BSP_ROOT, RTT_ROOT, Env): do_copy_file(os.path.join(RTT_ROOT, 'README.md'), os.path.join(target_path, 'README.md')) do_copy_file(os.path.join(RTT_ROOT, 'README_zh.md'), os.path.join(target_path, 'README_zh.md')) - print('=> %s' % os.path.join('components', 'libc', 'components')) - do_copy_folder(os.path.join(RTT_ROOT, 'rcomponents', 'libc', 'compilers'), os.path.join(target_path, 'components', 'libc', 'compilers')) + print('=> %s' % os.path.join('components', 'libc', 'compilers')) + do_copy_folder(os.path.join(RTT_ROOT, 'components', 'libc', 'compilers'), os.path.join(target_path, 'components', 'libc', 'compilers')) # copy all libcpu/ARCH directory print('=> libcpu')