From: g0dil Date: Fri, 18 Sep 2009 12:09:37 +0000 (+0000) Subject: BUGFIX: Add missing get_path() X-Git-Url: http://g0dil.de/git?p=senf.git;a=commitdiff_plain;h=b5980a2e274ed6a2652a5b5a1e2a12e7651551c2 BUGFIX: Add missing get_path() git-svn-id: https://svn.berlios.de/svnroot/repos/senf/trunk@1425 270642c3-0616-0410-b53a-bc976706d245 --- diff --git a/site_scons/site_tools/Doxygen.py b/site_scons/site_tools/Doxygen.py index 5b04516..2a4f154 100644 --- a/site_scons/site_tools/Doxygen.py +++ b/site_scons/site_tools/Doxygen.py @@ -189,7 +189,7 @@ class DoxyfileParser: if len(value) != 1: raise ValueError,"Invalid argument to @INCLUDE" - for d in [ self._dir ] + self._include_path: + for d in [ self._dir.get_path() ] + self._include_path: p = os.path.join(d,value[0]) if os.path.exists(p): self._items.setdefault('@INCLUDE',[]).append(p)