5fb312b784
Older versions of sphinx produced something like: file_system/index.rst:58: WARNING: Duplicate declaration. Newer versions produce: file_system/index.rst:58: WARNING: Duplicate declaration, fs_statvfs Change the regex to handle both conditions. Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
7 lines
419 B
Plaintext
7 lines
419 B
Plaintext
#
|
|
^(?P<filename>([\-:\\/\w\.])+[/\\]doc[/\\]reference[/\\]file_system[/\\]index.rst):(?P<lineno>[0-9]+): WARNING: Duplicate declaration(.*)
|
|
#
|
|
^(?P<filename>([\-:\\/\w\.])+[/\\]doc[/\\]reference[/\\]peripherals[/\\]dma.rst):(?P<lineno>[0-9]+): WARNING: Duplicate declaration(.*)
|
|
#
|
|
^(?P<filename>([\-:\\/\w\.])+[/\\]doc[/\\]reference[/\\]peripherals[/\\]sensor.rst):(?P<lineno>[0-9]+): WARNING: Duplicate declaration(.*)
|