Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot/distro.py
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-11-23 15:00:15 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-11-23 15:00:15 (GMT)
commit0536be089999279b2c8ad9fc285c8534582b24e2 (patch)
treefad68e3221325091501738b7a9085ea70192ac75 /devbot/distro.py
parentee6ffa84073c7288111942f9cbae69639a06ecfc (diff)
Don't use lib64 on ubuntu
Diffstat (limited to 'devbot/distro.py')
-rw-r--r--devbot/distro.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/devbot/distro.py b/devbot/distro.py
index 89771f6..72d668e 100644
--- a/devbot/distro.py
+++ b/devbot/distro.py
@@ -152,6 +152,9 @@ class UbuntuPackageManager:
return result
+def get_use_lib64():
+ return os.uname()[4] == "x86_64" and get_distro_name() != "ubuntu"
+
def get_package_manager(test=False, interactive=True):
name, version = _get_distro_info()