* 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:14 +00:00
parent 48d1487d7b
commit d6f2a2ea22
2 changed files with 3 additions and 3 deletions

View File

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

View File

@ -47,9 +47,9 @@
add_library (intervalTree ${intervalTreeCpps} )
target_link_libraries (intervalTree ${CORIOLIS_LIBRARIES}
${HURRICANE_LIBRARIES} )
install ( TARGETS equinox intervalTree DESTINATION /lib)
install ( TARGETS equinox intervalTree DESTINATION lib)
install ( FILES ${includes}
${mocIncludes}
${intervalTreeIncludes} DESTINATION /include/coriolis/equinox )
${intervalTreeIncludes} DESTINATION include/coriolis/equinox )