From 172ce6420c3e834781c42f34e63b29d8b71f5104 Mon Sep 17 00:00:00 2001 From: Fabian Franzelin Date: Thu, 20 Aug 2015 13:53:59 +0000 Subject: [PATCH] bug fixed: wrong dependecy for building the python package was used git-svn-id: https://ipvs.informatik.uni-stuttgart.de/SGpp/repos/trunk@4827 4eea3252-f0fb-4393-894d-40516dce545b --- pysgpp/SConscript | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pysgpp/SConscript b/pysgpp/SConscript index e39eb90687..3724718089 100755 --- a/pysgpp/SConscript +++ b/pysgpp/SConscript @@ -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 @@ -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)