* 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:17 +00:00
parent d6f2a2ea22
commit 3600d6becd
2 changed files with 3 additions and 3 deletions

View File

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

View File

@ -45,8 +45,8 @@
${LEFDEF_LIBRARIES}
${OA_LIBRARIES}
)
install ( TARGETS solstice DESTINATION /lib)
install ( TARGETS solstice DESTINATION lib)
install ( FILES ${includes}
${mocIncludes} DESTINATION /include/coriolis/solstice )
${mocIncludes} DESTINATION include/coriolis/solstice )