summaryrefslogtreecommitdiff
path: root/debian/patches/0001-install-libs-to-usr-lib-not-usr-lib64-Closes-588557.patch
blob: 061b259576cd39b41c4e248b47a586f464f26a49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
From: Antonin Kral <a.kral@bobek.cz>
Date: Tue, 5 Apr 2011 10:19:25 +0200
Subject: install libs to /usr/lib not /usr/lib64 (Closes: #588557)

---
 SConstruct |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/SConstruct b/SConstruct
index 88ea3f8..5c48996 100644
--- a/SConstruct
+++ b/SConstruct
@@ -525,7 +525,7 @@ elif "linux2" == os.sys.platform or "linux3" == os.sys.platform:
 
     if os.uname()[4] == "x86_64" and not force32:
         linux64 = True
-        nixLibPrefix = "lib64"
+        nixLibPrefix = "lib"
         env.Append( LIBPATH=["/usr/lib64" , "/lib64" ] )
         env.Append( LIBS=["pthread"] )