Skip to content

Commit

Permalink
fixed typo on SHOWENV
Browse files Browse the repository at this point in the history
  • Loading branch information
maureeungaro committed Jan 9, 2019
1 parent 4b5d22b commit 18ec43d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions loadxerces.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ def loadxerces(env) :
env.Append(CPPPATH = xercesincs)

## library paths
## some OS need lib64
xercesldir1 = [XERCESCROOT + '/lib']
env.Append(LIBPATH = xercesldir1)

## some OS need lib64
if env['PLATFORM'] == 'posix':
xercesldir2 = [XERCESCROOT + '/lib64']
env.Append(LIBPATH = xercesldir2)
Expand All @@ -30,5 +30,5 @@ def loadxerces(env) :
if env['SHOWENV'] == "1":
print "\n > Loading XERCESC software from ", XERCESCROOT
print " XERCESC include flags: ", xercesincs
print " XERCESC libraries path: ", xercesldir
print " XERCESC libraries path: ", xercesldir1
print " XERCESC libraries: ", xerceslibs

0 comments on commit 18ec43d

Please sign in to comment.