* 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:05 +00:00
parent c61f191a61
commit 78b3108763
2 changed files with 4 additions and 4 deletions

View File

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

View File

@ -53,10 +53,10 @@
add_library ( flute ${fluteCpps} ) add_library ( flute ${fluteCpps} )
target_link_libraries ( flute ${CORIOLIS_LIBRARIES} target_link_libraries ( flute ${CORIOLIS_LIBRARIES}
${HURRICANE_LIBRARIES} ) ${HURRICANE_LIBRARIES} )
install ( TARGETS knik flute DESTINATION /lib) install ( TARGETS knik flute DESTINATION lib)
install ( FILES ${includes} install ( FILES ${includes}
${mocIncludes} ${mocIncludes}
${fluteIncludes} DESTINATION /include/coriolis/knik ) ${fluteIncludes} DESTINATION include/coriolis/knik )
install ( FILES flute-2.4/etc/POST9.dat install ( FILES flute-2.4/etc/POST9.dat
flute-2.4/etc/POWV9.dat DESTINATION /share/etc/flute-2.4 ) flute-2.4/etc/POWV9.dat DESTINATION share/etc/flute-2.4 )