diff options
author | Mike Zeller <mike@mikezeller.net> | 2021-08-27 12:11:02 -0400 |
---|---|---|
committer | Mike Zeller <mike@mikezeller.net> | 2021-08-27 12:11:02 -0400 |
commit | 81f23222e3d403fbfd30225f51836162aeaaf832 (patch) | |
tree | 345d5b7f0879a0c255c0233064bdba0f50262614 | |
parent | cf209a1bd5cc79461b0a23ce43ded7ae0387f3ff (diff) | |
parent | 1b9d0d8668d6fb8bbf6fd07dfeac92665c32895e (diff) | |
download | illumos-joyent-81f23222e3d403fbfd30225f51836162aeaaf832.tar.gz |
[illumos-gate merge]
commit 1b9d0d8668d6fb8bbf6fd07dfeac92665c32895e
14000 lorder: replace sequence a-z by [:lower:]
-rw-r--r-- | usr/src/cmd/sgs/lorder/lorder.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr/src/cmd/sgs/lorder/lorder.sh b/usr/src/cmd/sgs/lorder/lorder.sh index bea4cd4804..152d9ba9ea 100644 --- a/usr/src/cmd/sgs/lorder/lorder.sh +++ b/usr/src/cmd/sgs/lorder/lorder.sh @@ -74,20 +74,20 @@ esac # The last 2 sections of code are exactly alike but # they handle different external symbols, namely the # symbols that are defined in the text section, data section, bss -# section or common symbols and symbols +# section or common symbols and symbols # that are referenced but not defined in this file. -# A line containing the symbol (from the pattern space) and +# A line containing the symbol (from the pattern space) and # the file it is referenced in (from the hold space) is # put into the pattern space. -# If its text, data, bss or common it is written out to the -# symbol definition (symdef) file, otherwise it was referenced +# If its text, data, bss or common it is written out to the +# symbol definition (symdef) file, otherwise it was referenced # but not declared in this file so it is written out to the # symbol referenced (symref) file. # # ${WHERE}/${PFX}nm -p $* 2>$TDIR/$$tmp | sed -e '/^[ ]*$/d' -e ' /^[0-9]* R $/d - / [a-zFLS] /d + / [[:lower:]FLS] /d /[^]]:$/{ s/:// h |