Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-07-11 15:13:11 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-07-11 15:13:11 (GMT)
commite82cc1762378ea615fb0fd72b7e26011a457d049 (patch)
tree0a8861e70940bcb137ca5ebf99e5387ee433150a /scripts
parent092ba549582fd2ea9e8598bfc1678def9731636b (diff)
parentd89225262caeac15d7687440884e15912558aedf (diff)
Merge branch 'master' of git.sugarlabs.org:sugar-build/sugar-build
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/check-system10
1 files changed, 9 insertions, 1 deletions
diff --git a/scripts/check-system b/scripts/check-system
index 7b9b36e..14168ea 100755
--- a/scripts/check-system
+++ b/scripts/check-system
@@ -232,6 +232,10 @@ checks = \
"checker": "dbus",
"packages": { "fedora": "telepathy-salut",
"ubuntu": "telepathy-salut" } },
+ { "check": "espeak",
+ "checker": "gstreamer",
+ "packages": { "fedora": "gstreamer-plugins-espeak",
+ "ubuntu": None } },
# Activities runtime
@@ -338,7 +342,11 @@ def run_checks(distro, checks):
checker = checkers[check["checker"]]
if checker(check["check"]):
if distro in check["packages"]:
- packages.append(check["packages"][distro])
+ package = check["packages"][distro]
+
+ # Might be none, if so skip on this distro
+ if package:
+ packages.append(package)
else:
failed_checks.append(check)