Dear Maintainer,
My package depending on dh-sequence-doxygen is not built with "nodoc" build
profile because dh_installdocs skips an HTML generated documentation and
dh_doxygen does not see it then fails. Please turn the helper into no-op under
"nodoc" build profile (set either via DEB_BUILD_OPTIONS or DEB_BUILD_PROFILES).
$ DEB_BUILD_OPTIONS="nodoc" dpkg-buildpackage -b
...
dh_doxygen -i
dh_doxygen: error: Doxygen documentation not found
The next workaround in d/rules can ignore the error.
ifneq (,$(filter nodoc,$(DEB_BUILD_OPTIONS)))
override_dh_doxygen:
endif