From 7e42a2b9581fab2ced11724e513506c28e69b18e Mon Sep 17 00:00:00 2001 From: Jean-Paul Chaput Date: Sun, 16 May 2010 16:34:23 +0000 Subject: [PATCH] * 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. --- ispd/src/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ispd/src/CMakeLists.txt b/ispd/src/CMakeLists.txt index c26566a5..bb2a7c5d 100644 --- a/ispd/src/CMakeLists.txt +++ b/ispd/src/CMakeLists.txt @@ -27,5 +27,5 @@ ${LEFDEF_LIBRARIES} ${QT_LIBRARIES} ${Boost_LIBRARIES} ) - install ( TARGETS ispd DESTINATION /bin ) + install ( TARGETS ispd DESTINATION bin )