Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2008-05-05 21:57:06 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2008-05-05 21:57:06 (GMT)
commit776a15e5c97075c1d9699c63e58e0a60a228d155 (patch)
tree64c05e78089eba2d7bbdc33ed8df52f02d7158b5 /scripts
parent755a7468e672677efb4e371146ce8f10883d82ac (diff)
parente7ea9966919538bffc06d194522972256a053371 (diff)
Merge branch 'master' of git+ssh://dev.laptop.org/git/sugar-jhbuild
Diffstat (limited to 'scripts')
-rw-r--r--scripts/bundlemodule.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/bundlemodule.py b/scripts/bundlemodule.py
index ead4425..47aaf9d 100644
--- a/scripts/bundlemodule.py
+++ b/scripts/bundlemodule.py
@@ -80,7 +80,8 @@ class BundleModule(Package):
python = os.environ.get('PYTHON', 'python')
cmd = [python, 'setup.py']
prefix = os.path.join(buildscript.config.prefix)
- cmd.extend(['install', os.path.join(prefix, 'share', 'activities')])
+ cmd.extend(['install', os.path.join(prefix, 'share', 'sugar',
+ 'activities')])
buildscript.execute(cmd, cwd=srcdir)
buildscript.packagedb.add(self.name, self.get_revision() or '')
do_install.next_state = Package.STATE_DONE