blob: 5fed6950813766497cccf3940d2ad2b02c3f6c2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
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 4e46052..f98eb27 100644
--- a/SConstruct
+++ b/SConstruct
@@ -495,7 +495,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"] )
--
|