* All tools:
- Change: In the CMakeLists.txt, in all the install commands remove all the leading "/" as they prevents the CMAKE_INSTALL_PREFIX to be took into account. It was nevertheless working because buildCoriolis.py was using DESTDIR which is prepended anyway. * ./goodies: - Change: In buildCoriolis.py, no longer uses the DESTDIR but instead CMAKE_INSTALL_PREFIX.
This commit is contained in:
parent
78b3108763
commit
a67d6ecf63
|
@ -1 +1 @@
|
|||
install ( FILES FindKATABATIC.cmake DESTINATION /share/cmake_modules )
|
||||
install ( FILES FindKATABATIC.cmake DESTINATION share/cmake_modules )
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
|
||||
set ( htmlInstallDir /share/doc/en/html/katabatic )
|
||||
set ( latexInstallDir /share/doc/en/latex/katabatic )
|
||||
set ( htmlInstallDir share/doc/en/html/katabatic )
|
||||
set ( latexInstallDir share/doc/en/latex/katabatic )
|
||||
|
||||
add_custom_target ( doc ALL cd ${KATABATIC_SOURCE_DIR}/doc && ${DOXYGEN_EXECUTABLE} doxyfile )
|
||||
|
||||
|
|
|
@ -54,7 +54,7 @@ endif ( CHECK_DETERMINISM )
|
|||
${LEFDEF_LIBRARIES}
|
||||
${OA_LIBRARIES}
|
||||
)
|
||||
install ( TARGETS katabatic DESTINATION /lib)
|
||||
install ( TARGETS katabatic DESTINATION lib)
|
||||
install ( FILES ${includes}
|
||||
${mocIncludes} DESTINATION /include/coriolis/katabatic )
|
||||
${mocIncludes} DESTINATION include/coriolis/katabatic )
|
||||
|
||||
|
|
Loading…
Reference in New Issue