summaryrefslogtreecommitdiff
path: root/build-aux/extract-ofp-fields
diff options
context:
space:
mode:
authorBen Pfaff <blp@ovn.org>2017-01-25 20:28:06 -0800
committerBen Pfaff <blp@ovn.org>2017-01-25 20:30:00 -0800
commita0a81b579fdbee65fdb16209f9e2d14ef185e1b9 (patch)
treeeb1d72da41f135eab9049300614e9a0629fa6798 /build-aux/extract-ofp-fields
parent213615b3cd1cf823d71e12e565c639c96f4213fb (diff)
downloadopenvswitch-a0a81b579fdbee65fdb16209f9e2d14ef185e1b9.tar.gz
ovs-fields: Eliminate non-ASCII characters from groff input.
It's difficult to make groff portably accept non-ASCII characters. It's easier to replace them by groff escapes for the same characters, which this commit does. Fixes: 96fee5e0a2a0 ("ovs-fields: New manpage to document Open vSwitch and OpenFlow fields.") Signed-off-by: Ben Pfaff <blp@ovn.org> Acked-by: Daniele Di Proietto <diproiettod@vmware.com>
Diffstat (limited to 'build-aux/extract-ofp-fields')
-rwxr-xr-xbuild-aux/extract-ofp-fields2
1 files changed, 2 insertions, 0 deletions
diff --git a/build-aux/extract-ofp-fields b/build-aux/extract-ofp-fields
index bc15a8bc6..4c9224609 100755
--- a/build-aux/extract-ofp-fields
+++ b/build-aux/extract-ofp-fields
@@ -752,6 +752,8 @@ ovs\-fields \- protocol header fields in OpenFlow and Open vSwitch
oline = oline.replace(u'\u2208', r'\[mo]')
oline = oline.replace(u'\u2260', r'\[!=]')
oline = oline.replace(u'\u2264', r'\[<=]')
+ oline = oline.replace(u'\u2265', r'\[>=]')
+ oline = oline.replace(u'\u00d7', r'\[mu]')
if len(oline):
output += [oline]