From 3caabbed9f95de37367c0dd3b2f1e87edef471b2 Mon Sep 17 00:00:00 2001 From: Daniel Narvaez Date: Mon, 10 Dec 2012 23:51:55 +0000 Subject: Improve multilib support --- (limited to 'devbot/plugins/debian.py') 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: -- cgit v0.9.1