Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot/plugins/fedora.py
diff options
context:
space:
mode:
Diffstat (limited to 'devbot/plugins/fedora.py')
-rw-r--r--devbot/plugins/fedora.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/devbot/plugins/fedora.py b/devbot/plugins/fedora.py
index 862ca81..df0aef7 100644
--- a/devbot/plugins/fedora.py
+++ b/devbot/plugins/fedora.py
@@ -91,9 +91,12 @@ class DistroInfo(interfaces.DistroInfo):
self.version = "unknown"
self.gnome_version = "3.6"
self.gstreamer_version = "1.0"
- self.use_lib64 = (arch == "x86_64")
self.valid = True
self.supported = (arch in ["i386", "i686", "x86_64"])
+ self.lib_dir = None
+
+ if arch == "x86_64":
+ self.lib_dir = "lib64"
try:
release = open(self._FEDORA_RELEASE_PATH).read().strip()