Package: remuco / 0.9.6-2

fix-libdir.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Description: Fix invalid installation of stuff to /usr/lib64/
Author: Chow Loong Jin <hyperair@ubuntu.com>
Index: remuco/setup.py
===================================================================
--- remuco.orig/setup.py	2011-03-05 22:32:57.027906394 +0800
+++ remuco/setup.py	2011-03-05 22:33:15.307785957 +0800
@@ -13,10 +13,7 @@
 import platform
 
 # used for plugin based adapters which install to /usr/lib...
-if platform.architecture()[0] == "32bit":
-    LIB_DIR = "lib"
-else:
-    LIB_DIR = "lib64"
+LIB_DIR = "lib"
 
 # =============================================================================
 # specify script and data files for each player adapter (relative file names)