From 1030ea7c802b4c1a1fa798194aa7abdd686013ea Mon Sep 17 00:00:00 2001 From: Masayuki Ishikawa Date: Thu, 19 Jul 2018 00:31:26 +0000 Subject: [PATCH] Merged in masayuki2009/nuttx.apps/fix_mksymtab (pull request #147) apps/tools: Fix an error in mksymtab.sh Signed-off-by: Masayuki Ishikawa Approved-by: GregoryN --- tools/mksymtab.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/mksymtab.sh b/tools/mksymtab.sh index 5dd0a7787..67586dd74 100755 --- a/tools/mksymtab.sh +++ b/tools/mksymtab.sh @@ -80,7 +80,7 @@ rm -f $outfile execlist=`find ${dir} -executable -type f` for exec in ${execlist}; do - nm $exec | fgrep ' U ' | sed -e "s/^[ ]*//g" | cut -d' ' -f2 >>_tmplist.dat + nm $exec | fgrep ' U ' | sed -e "s/^[ ]*//g" | cut -d' ' -f2 >>_tmplist done varlist=`cat _tmplist | sort - | uniq -`