Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSascha Silbe <sascha-pgp@silbe.org>2011-03-05 16:10:12 (GMT)
committer Sascha Silbe <sascha-pgp@silbe.org>2011-03-05 16:10:12 (GMT)
commitba4af694d239b174c994ea8e4d8cdf7aa797a06c (patch)
treea95597e27136b18ea665efe03b47cc4e25756025
parent15b8729efc55498df7af6eeb7106cf3d7d6a88c7 (diff)
run fix_manifest during build phase for activities
-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