Skip to content

Commit

Permalink
explicit mysql path on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
maureeungaro committed May 17, 2023
1 parent 3aea0bd commit 8124b8f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions loadccdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ def loadccdb(env, OSENV) :
## libraries
ccdblibs = ['ccdb', 'libmysqlclient', 'sqlite3']
env.Append(LIBS = ccdblibs)
if env['PLATFORM'] == 'posix':
env.Append(LIBPATH='/usr/lib64/mysql/')

# print environment if requested
if env['SHOWENV'] == "1":
Expand Down

0 comments on commit 8124b8f

Please sign in to comment.