From: Antonin Kral 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"] )