diff options
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 5ad7211d..8b8e67d4 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) |