diff options
author | Karl Berry <karl@freefriends.org> | 2006-12-09 19:46:58 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2006-12-09 19:46:58 +0000 |
commit | aa206d845479aa763e5c8ef5241b1670fa4417cd (patch) | |
tree | 2bc27432bf5f5150c7f9057963439a77175a4182 /Master/bin/powerpc-aix/updmap | |
parent | fac9dc54b39b5266eba37dd198a4910b70719bbc (diff) |
aix binaries update
git-svn-id: svn://tug.org/texlive/trunk@2659 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/bin/powerpc-aix/updmap')
-rwxr-xr-x | Master/bin/powerpc-aix/updmap | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Master/bin/powerpc-aix/updmap b/Master/bin/powerpc-aix/updmap index c66303fdeee..ced046f76b9 100755 --- a/Master/bin/powerpc-aix/updmap +++ b/Master/bin/powerpc-aix/updmap @@ -1052,7 +1052,8 @@ syncWithTrees() ############################################################################### # normalizeLines() # remove comments, whitespace is exactly one space, no empty lines, -# no whitespace at end of line, one space before and after " +# no whitespace at end of line, one space before and after ", +# no CR's (as in skaknew). ############################################################################### normalizeLines() { @@ -1062,7 +1063,9 @@ normalizeLines() -e '/^ *$/d' \ -e 's@ $@@' \ -e 's@ *" *@ " @g' \ - -e 's@" \([^"]*\) "@"\1"@g' | sort | uniq + -e 's@" \([^"]*\) "@"\1"@g' \ + | tr -d '\r' \ + | sort | uniq } ############################################################################### |