diff options
author | Dmitry Kozlov <xeb@mail.ru> | 2010-12-24 10:18:41 +0300 |
---|---|---|
committer | Dmitry Kozlov <xeb@mail.ru> | 2010-12-24 10:18:41 +0300 |
commit | 59f691793e9270026214abffceb06f64d365fee3 (patch) | |
tree | 43662c8801bc67cb7ae478130eb4b742245490cc /accel-pptpd/radius/CMakeLists.txt | |
parent | 2fce5d312044d661055406db31cabd66185ca405 (diff) | |
download | accel-ppp-59f691793e9270026214abffceb06f64d365fee3.tar.gz accel-ppp-59f691793e9270026214abffceb06f64d365fee3.zip |
changed install paths to proper ones
Diffstat (limited to 'accel-pptpd/radius/CMakeLists.txt')
-rw-r--r-- | accel-pptpd/radius/CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/accel-pptpd/radius/CMakeLists.txt b/accel-pptpd/radius/CMakeLists.txt index 5ad7211..8b8e67d 100644 --- a/accel-pptpd/radius/CMakeLists.txt +++ b/accel-pptpd/radius/CMakeLists.txt @@ -8,12 +8,12 @@ SET(sources radius.c ) -ADD_DEFINITIONS(-DDICTIONARY="${CMAKE_INSTALL_PREFIX}/usr/share/accel-pptp/radius/dictionary") +ADD_DEFINITIONS(-DDICTIONARY="${CMAKE_INSTALL_PREFIX}/share/accel-pptp/radius/dictionary") ADD_LIBRARY(radius SHARED ${sources}) INSTALL(TARGETS radius - LIBRARY DESTINATION usr/lib/accel-pptp + LIBRARY DESTINATION lib/accel-pptp ) FILE(GLOB dict "${CMAKE_CURRENT_SOURCE_DIR}/dict/*") -INSTALL(FILES ${dict} DESTINATION usr/share/accel-pptp/radius) +INSTALL(FILES ${dict} DESTINATION share/accel-pptp/radius) |