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/ubuntu.py') diff --git a/devbot/plugins/ubuntu.py b/devbot/plugins/ubuntu.py index 140d8ad..005871c 100644 --- a/devbot/plugins/ubuntu.py +++ b/devbot/plugins/ubuntu.py @@ -17,7 +17,12 @@ class DistroInfo(interfaces.DistroInfo): self.gstreamer_version = "1.0" self.valid = True self.supported = (arch in ["i386", "i686", "x86_64"]) - self.use_lib64 = False + self.lib_dir = None + + if arch in ["i386", "i686"]: + self.lib_dir = "lib/i386-linux-gnu" + elif arch == "x86_64": + self.lib_dir = "lib/x86_64-linux-gnu" try: release = open(self._OS_RELEASE_PATH).read().strip() -- cgit v0.9.1