summaryrefslogtreecommitdiff
path: root/Master/bin/i386-darwin/updmap
diff options
context:
space:
mode:
authorJonathan Kew <jfkthame@googlemail.com>2006-12-12 13:06:24 +0000
committerJonathan Kew <jfkthame@googlemail.com>2006-12-12 13:06:24 +0000
commit841b188679aeb0370a90b8589995dc9e2eac9e29 (patch)
treeeb9d5630dfa2a52925187d50058cf5070b8c8168 /Master/bin/i386-darwin/updmap
parentffb4945c317ad300d0ea194a12fc4048f405b2bd (diff)
new i386-darwin binaries
git-svn-id: svn://tug.org/texlive/trunk@2698 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/bin/i386-darwin/updmap')
-rwxr-xr-xMaster/bin/i386-darwin/updmap7
1 files changed, 5 insertions, 2 deletions
diff --git a/Master/bin/i386-darwin/updmap b/Master/bin/i386-darwin/updmap
index c66303fdeee..ced046f76b9 100755
--- a/Master/bin/i386-darwin/updmap
+++ b/Master/bin/i386-darwin/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
}
###############################################################################