Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot/plugins/debian.py
diff options
context:
space:
mode:
Diffstat (limited to 'devbot/plugins/debian.py')
-rw-r--r--devbot/plugins/debian.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/devbot/plugins/debian.py b/devbot/plugins/debian.py
index 0b340e8..53e6bc4 100644
--- a/devbot/plugins/debian.py
+++ b/devbot/plugins/debian.py
@@ -94,7 +94,12 @@ class DistroInfo(interfaces.DistroInfo):
self.gstreamer_version = "0.10"
self.valid = True
self.supported = (arch in ["i686", "x86_64"])
- self.use_lib64 = False
+ self.lib_dir = None
+
+ if arch == "i686":
+ self.lib_dir = "lib/i386-linux-gnu"
+ elif arch == "x86_64":
+ self.lib_dir = "lib/x86_64-linux-gnu"
try:
with open(self._DEBIAN_VERSION_PATH) as f: