diff options
author | Karl Berry <karl@freefriends.org> | 2007-01-07 21:58:51 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2007-01-07 21:58:51 +0000 |
commit | 7e3c0ddc199192fd1b98c37279e95af5e56ae4d1 (patch) | |
tree | e485d81eabf146eff216f23850b8ca4584af80e8 /Master/bin/sparc-solaris/updmap | |
parent | 3982ba0e2dfb2d87bc6766eadcafd3cccb5cb312 (diff) |
new sparc-solaris binaries from vvv
git-svn-id: svn://tug.org/texlive/trunk@3213 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/bin/sparc-solaris/updmap')
-rwxr-xr-x | Master/bin/sparc-solaris/updmap | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Master/bin/sparc-solaris/updmap b/Master/bin/sparc-solaris/updmap index c66303fdeee..0f8cc469a83 100755 --- a/Master/bin/sparc-solaris/updmap +++ b/Master/bin/sparc-solaris/updmap @@ -122,7 +122,7 @@ export PATH test -n "${ZSH_VERSION+set}" && alias -g '${1+"$@"}'='"$@"' # the version string -version=1122009795 # seconds since `00:00:00 1970-01-01 UTC' +version=1167072206 # seconds since `00:00:00 1970-01-01 UTC' # date '+%s' (with GNU date) ############################################################################### @@ -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 } ############################################################################### |