summaryrefslogtreecommitdiff
path: root/Master/bin/i386-freebsd/updmap
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2006-12-31 23:30:46 +0000
committerKarl Berry <karl@freefriends.org>2006-12-31 23:30:46 +0000
commitea8cdb2c44082b3029c4d1dbf17360094b66fe89 (patch)
tree64766b7e6da2447acae3c774d50cf9ea61d9b191 /Master/bin/i386-freebsd/updmap
parent75a7295fd0ea5ba0faa392e0237d0e4ed5fe913a (diff)
new freebsd binaries from manfred
git-svn-id: svn://tug.org/texlive/trunk@3071 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/bin/i386-freebsd/updmap')
-rwxr-xr-xMaster/bin/i386-freebsd/updmap9
1 files changed, 6 insertions, 3 deletions
diff --git a/Master/bin/i386-freebsd/updmap b/Master/bin/i386-freebsd/updmap
index c66303fdeee..0f8cc469a83 100755
--- a/Master/bin/i386-freebsd/updmap
+++ b/Master/bin/i386-freebsd/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
}
###############################################################################