Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sjhbuild/bundlemodule.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/sjhbuild/bundlemodule.py b/sjhbuild/bundlemodule.py
index 7526e31..2d1b389 100644
--- a/sjhbuild/bundlemodule.py
+++ b/sjhbuild/bundlemodule.py
@@ -67,6 +67,8 @@ class BundleModule(Package):
buildscript.set_action('Building', self)
srcdir = self.get_srcdir(buildscript)
python = os.environ.get('PYTHON', 'python')
+ cmd = [python, 'setup.py', 'fix_manifest']
+ buildscript.execute(cmd, cwd=srcdir)
cmd = [python, 'setup.py', 'build']
buildscript.execute(cmd, cwd=srcdir)
do_build.next_phase = PHASE_INSTALL