* All Tools:
- New: Added FreeBSD/Ubuntu patches from Otacilio De Araujo (<otaciliodearaujo@gmail.com>).
This commit is contained in:
parent
47dc198d9f
commit
64e4d7f259
|
@ -4,7 +4,7 @@
|
||||||
# inside a Python function.
|
# inside a Python function.
|
||||||
|
|
||||||
|
|
||||||
svnconfig = { 'method':'svn+ssh://coriolis.soc.lip6.fr' }
|
svnconfig = { 'method':'svn+ssh://bip.soc.lip6.fr' }
|
||||||
|
|
||||||
projectdir = 'coriolis-2.x'
|
projectdir = 'coriolis-2.x'
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
FindPythonSitePackages.cmake
|
FindPythonSitePackages.cmake
|
||||||
FindLEFDEF.cmake
|
FindLEFDEF.cmake
|
||||||
FindBootstrap.cmake
|
FindBootstrap.cmake
|
||||||
|
FindLibexecinfo.cmake
|
||||||
)
|
)
|
||||||
|
|
||||||
install ( FILES ${finders} DESTINATION share/cmake/Modules )
|
install ( FILES ${finders} DESTINATION share/cmake/Modules )
|
||||||
|
|
|
@ -73,8 +73,8 @@
|
||||||
#
|
#
|
||||||
set(CMAKE_C_FLAGS_DEBUG "-g -Wall" CACHE STRING "Debug options." FORCE)
|
set(CMAKE_C_FLAGS_DEBUG "-g -Wall" CACHE STRING "Debug options." FORCE)
|
||||||
set(CMAKE_CXX_FLAGS_DEBUG "-g -Wall" CACHE STRING "Debug options." FORCE)
|
set(CMAKE_CXX_FLAGS_DEBUG "-g -Wall" CACHE STRING "Debug options." FORCE)
|
||||||
set(CMAKE_C_FLAGS_RELEASE "-O3 -DNDEBUG -Wall" CACHE STRING "Release options." FORCE)
|
set(CMAKE_C_FLAGS_RELEASE "-O2 -DNDEBUG -Wall" CACHE STRING "Release options." FORCE)
|
||||||
set(CMAKE_CXX_FLAGS_RELEASE "-O3 -DNDEBUG -Wall" CACHE STRING "Release options." FORCE)
|
set(CMAKE_CXX_FLAGS_RELEASE "-O2 -DNDEBUG -Wall" CACHE STRING "Release options." FORCE)
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
|
|
|
@ -173,6 +173,7 @@ if __name__ == "__main__":
|
||||||
sitePackagesDir = "%s/python%s/dist-packages" % (absLibDir,version)
|
sitePackagesDir = "%s/python%s/dist-packages" % (absLibDir,version)
|
||||||
|
|
||||||
strippedPythonPath = "%s:" % (sitePackagesDir) + strippedPythonPath
|
strippedPythonPath = "%s:" % (sitePackagesDir) + strippedPythonPath
|
||||||
|
strippedPythonPath = "%s/crlcore:" % (sitePackagesDir) + strippedPythonPath
|
||||||
strippedPythonPath = "%s/cumulus:" % (sitePackagesDir) + strippedPythonPath
|
strippedPythonPath = "%s/cumulus:" % (sitePackagesDir) + strippedPythonPath
|
||||||
strippedPythonPath = "%s/stratus:" % (sitePackagesDir) + strippedPythonPath
|
strippedPythonPath = "%s/stratus:" % (sitePackagesDir) + strippedPythonPath
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue