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-06-29 12:03:02 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-06-29 12:03:02 (GMT)
commitc5c3269b9c0d8152b1bf9f80c3001f638ab4ed57 (patch)
tree94605c6de77c8b45b9e2f2cde476e5f728aa10b2 /scripts
parent9cc5d18db6911f5c81b9abeabdde2e04f6a6377f (diff)
Try to fix atk bridge checks in ubuntu
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/check-system6
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/check-system b/scripts/check-system
index ed8b7e4..0591eb0 100755
--- a/scripts/check-system
+++ b/scripts/check-system
@@ -32,7 +32,9 @@ def check_gtkmodule(check):
# Not sure we can do better than this, the gtkmodule stuff is private
missing = True
- for libdir in ["lib", "lib64"]:
+ for libdir in ["lib", "lib64",
+ "lib/x86_64-linux-gnu",
+ "lib/i386-linux-gnu"]:
if os.path.exists("/usr/%s/gtk-2.0/modules/lib%s.so" % (libdir, check)):
missing = False
@@ -218,7 +220,7 @@ checks = \
{ "check": "atk-bridge",
"checker": "gtkmodule",
"packages": { "fedora": "at-spi2-atk",
- "ubuntu": "at-spi2-atk" } },
+ "ubuntu": "libatk-adaptor" } },
{ "check": "curl",
"checker": "binary",
"packages": { "fedora": "curl",