mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-11 15:35:13 +00:00
Merged in masayuki2009/nuttx.apps/fix_mksymtab (pull request #147)
apps/tools: Fix an error in mksymtab.sh Signed-off-by: Masayuki Ishikawa <Masayuki.Ishikawa@jp.sony.com> Approved-by: GregoryN <gnutt@nuttx.org>
This commit is contained in:
parent
cb9e9510d9
commit
1030ea7c80
1 changed files with 1 additions and 1 deletions
|
|
@ -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 -`
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue