Skip to content

Commit

Permalink
bug fixed: wrong dependecy for building the python package was used
Browse files Browse the repository at this point in the history
git-svn-id: https://ipvs.informatik.uni-stuttgart.de/SGpp/repos/trunk@4827 4eea3252-f0fb-4393-894d-40516dce545b
  • Loading branch information
Fabian Franzelin committed Aug 20, 2015
1 parent 53acb80 commit 172ce64
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions pysgpp/SConscript
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ if not py_env['USE_DOUBLE_PRECISION']:
py_env.AppendUnique(SWIGFLAGS=['-DUSE_DOUBLE_PRECISION=0'])

libPython = py_env.SharedLibrary(target='pysgpp_swig',
source=["pysgpp.i"],
SHLIBPREFIX='_',
LIBPATH=[BUILD_DIR],
LIBS=['sgpp' + moduleFolder
for moduleFolder in moduleFolders
if env['SG_' + moduleFolder.upper()]])
source=["pysgpp.i"],
SHLIBPREFIX='_',
LIBPATH=[BUILD_DIR],
LIBS=['sgpp' + moduleFolder
for moduleFolder in moduleFolders
if env['SG_' + moduleFolder.upper()]])
# TODO libs are set hacky!

# install python libraries routine
Expand Down Expand Up @@ -84,5 +84,5 @@ moduleSetupPython = env.Command('setupPython', [], setupPython)
installLibPython = py_env.Install(PYSGPP_BUILD_PATH, libPython)
installLibWrapperPython = py_env.Install(PYSGPP_BUILD_PATH, "pysgpp_swig.py")
py_env.Depends(installLibPython, installLibWrapperPython)
py_env.Depends(moduleSetupPython, installLibPython)
py_env.Depends(moduleSetupPython, installLibWrapperPython)
installTargetList.append(installLibPython)

0 comments on commit 172ce64

Please sign in to comment.