From 0afea4d3ff71ce68147774f183951965cbb25708 Mon Sep 17 00:00:00 2001 From: William Deegan Date: Wed, 5 Dec 2018 15:26:49 -0500 Subject: Fix logic to include Platfrom/virtualenv.py in doc build --- doc/SConscript | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/SConscript b/doc/SConscript index 5f3d559..ad3eb9b 100644 --- a/doc/SConscript +++ b/doc/SConscript @@ -574,7 +574,9 @@ else: e = os.path.join('#src', 'engine') manifest_in = File(os.path.join(e, 'MANIFEST.in')).rstr() sources = bootstrap.parseManifestLines(e, open(manifest_in).readlines()) - sources = [x for x in sources if x.find('Platform') == -1] + + # Don't omit this as we need Platform.virtualenv for the examples to be run + # sources = [x for x in sources if x.find('Platform') == -1] sources = [x for x in sources if x.find('Tool') == -1] # XXX sources = [x for x in sources if x.find('Options') == -1] -- cgit v0.12