Skip to content

Commit 134e587

Browse files
committedJan 15, 2013
fixed cleaning for missiong doxygen
1 parent 909ab1e commit 134e587

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎SConstruct

+2-2
Original file line numberDiff line numberDiff line change
@@ -1177,7 +1177,7 @@ if HAVE_DOXYGEN:
11771177
target=docutarget)
11781178

11791179

1180-
env.Clean(DocPath('c++'), docutarget)
1180+
env.Clean(DocPath('c++'), glob(DocPath('c++/*')))
11811181

11821182
######################################################################
11831183
# Boost-test based tests
@@ -1683,7 +1683,7 @@ if have_l2h or have_t4h or HAVE_DOXYGEN:
16831683
tutorial_srcs)
16841684

16851685
documastersubdirs = ["tutorial/tutorial", "c++"] + [
1686-
path.basename(elt) for elt in glob("doc/python*")]
1686+
path.basename(elt) for elt in glob(DocPath("python*"))]
16871687

16881688
if docpybase not in documastersubdirs:
16891689
documastersubdirs += [docpybase]

0 commit comments

Comments
 (0)
Please sign in to comment.