Skip to content
  • mark olesen's avatar
    Using '+' separator causes problems building documentation (fixes #16880) · 66bb84e1
    mark olesen authored
      The previous solution of replacing the ";" with a "+" as a list
      separator (to avoid shell issues with ';') causes issues if a "+"
      appears in a directory name. This results in the files not being found
      and the documentation build fails. Eg,
    
          Error FODC0002 in file:///ParaView-5.1.2/...
    
    Use escape/unescape sequence for semicolons.
    
       Caller:   replace  '_'  -> '_u' and  ';'  -> '_s'
       Receiver: replace  '_s' -> ';'  and  '_u' -> '_'
    66bb84e1