* 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:
Jean-Paul Chaput 2010-05-16 16:34:08 +00:00
parent 78b3108763
commit a67d6ecf63
3 changed files with 5 additions and 5 deletions

View File

@ -1 +1 @@
install ( FILES FindKATABATIC.cmake DESTINATION /share/cmake_modules )
install ( FILES FindKATABATIC.cmake DESTINATION share/cmake_modules )

View File

@ -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 )

View File

@ -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 )