Skip to content

Commit

Permalink
bug OpenNebula#713: Add lib64 to LIBPATH, applied patch provided by R…
Browse files Browse the repository at this point in the history
…obert Schweikert
  • Loading branch information
rsmontero committed Jul 27, 2012
1 parent 109d429 commit 080af50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ main_env.Append(LINKFLAGS=['-g', '-pthread'])
# SQLITE
sqlite_dir=ARGUMENTS.get('sqlite_dir', 'none')
if sqlite_dir!='none':
main_env.Append(LIBPATH=[sqlite_dir+"/lib"])
main_env.Append(LIBPATH=[sqlite_dir+"/lib", sqlite_dir+"/lib64"])
main_env.Append(CPPPATH=[sqlite_dir+"/include"])

sqlite=ARGUMENTS.get('sqlite', 'yes')
Expand All @@ -121,7 +121,7 @@ else:
# xmlrpc
xmlrpc_dir=ARGUMENTS.get('xmlrpc', 'none')
if xmlrpc_dir!='none':
main_env.Append(LIBPATH=[xmlrpc_dir+"/lib"])
main_env.Append(LIBPATH=[xmlrpc_dir+"/lib", xmlrpc_dir+"/lib64"])
main_env.Append(CPPPATH=[xmlrpc_dir+"/include"])

# build lex/bison
Expand Down

0 comments on commit 080af50

Please sign in to comment.