diff options
author | Josh Blum | 2011-11-08 21:25:42 -0800 |
---|---|---|
committer | Josh Blum | 2011-11-08 21:25:42 -0800 |
commit | 3de9e901ae188c305745880645118e5952bdbbde (patch) | |
tree | adee438aee0dc8a6f3129528b2085cf06a70dc6f | |
parent | 88a9bcb16f4be542f5bbc6a06a45d0cfc561dfe9 (diff) | |
download | gnuradio-3de9e901ae188c305745880645118e5952bdbbde.tar.gz gnuradio-3de9e901ae188c305745880645118e5952bdbbde.tar.bz2 gnuradio-3de9e901ae188c305745880645118e5952bdbbde.zip |
cmake: fix for cmake 2.6 install w/ library fubar mode
-rw-r--r-- | cmake/Modules/GrMiscUtils.cmake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmake/Modules/GrMiscUtils.cmake b/cmake/Modules/GrMiscUtils.cmake index 540b97b93..4a0ddd53a 100644 --- a/cmake/Modules/GrMiscUtils.cmake +++ b/cmake/Modules/GrMiscUtils.cmake @@ -164,6 +164,7 @@ function(GR_LIBRARY_FOO target) POST_BUILD COMMAND ${CMAKE_COMMAND} -E create_symlink ${target_name} ${CMAKE_CURRENT_BINARY_DIR}/lib${target}.so COMMAND ${CMAKE_COMMAND} -E create_symlink ${target_name} ${CMAKE_CURRENT_BINARY_DIR}/lib${target}-${LIBVER}.so.0 + COMMAND ${CMAKE_COMMAND} -E touch ${target_name} #so the symlinks point to something valid so cmake 2.6 will install ) #and install the extra symlinks |