From: Teemu Murtola Date: Tue, 8 Jul 2014 03:53:47 +0000 (+0300) Subject: Make doc-check pass again without warnings X-Git-Url: http://biod.pnpi.spb.ru/gitweb/?a=commitdiff_plain;h=00596e7c45ba75e7922c3af101cd5541525fe15a;p=alexxy%2Fgromacs.git Make doc-check pass again without warnings The include path needs to be updated here as well for tng_io. Change-Id: I747a00a607fa6df6638dddc24f009565ab923c50 --- diff --git a/doxygen/gmxtree.py b/doxygen/gmxtree.py index e196da3d65..2077316536 100644 --- a/doxygen/gmxtree.py +++ b/doxygen/gmxtree.py @@ -681,7 +681,8 @@ class GromacsTree(object): def find_include_file(self, includedpath): """Find a file object corresponding to an include path.""" - for testdir in ('src', 'src/gromacs/legacyheaders', 'src/external/thread_mpi/include'): + for testdir in ('src', 'src/gromacs/legacyheaders', 'src/external/thread_mpi/include', + 'src/external/tng_io/include'): testpath = os.path.join(testdir, includedpath) if testpath in self._files: return self._files[testpath]