blob: 9e550f639a601b6c85fba5a13b330636cec163f5 (
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 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/SConstruct b/SConstruct
index dbe95a3..e142f29 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"] )
|