# HG changeset patch # User Sebastien Decugis # Date 1281947514 -32400 # Node ID 715dd6714ce7ceb79ebe7ddb001e97f43e27cb0b # Parent 9ffc11470ea2a63aa745f37b422253c3276cda7c Fix location where the rgw_common library is installed diff -r 9ffc11470ea2 -r 715dd6714ce7 contrib/debian/freediameter-radius-gateway.install --- a/contrib/debian/freediameter-radius-gateway.install Mon Aug 16 16:55:53 2010 +0900 +++ b/contrib/debian/freediameter-radius-gateway.install Mon Aug 16 17:31:54 2010 +0900 @@ -1,3 +1,3 @@ usr/lib/freeDiameter/app_radgw.fdx usr/lib/freeDiameter/*.rgwx -usr/lib/freeDiameter/rgw_common.* +usr/lib/rgw_common.* diff -r 9ffc11470ea2 -r 715dd6714ce7 extensions/app_radgw/CMakeLists.txt --- a/extensions/app_radgw/CMakeLists.txt Mon Aug 16 16:55:53 2010 +0900 +++ b/extensions/app_radgw/CMakeLists.txt Mon Aug 16 17:31:54 2010 +0900 @@ -122,8 +122,12 @@ #### ## INSTALL section ## -INSTALL(TARGETS app_radgw rgw_common +INSTALL(TARGETS app_radgw LIBRARY DESTINATION ${INSTALL_EXTENSIONS_SUFFIX} COMPONENT freeDiameter-radius-gateway) + +INSTALL(TARGETS rgw_common + LIBRARY DESTINATION ${INSTALL_LIBRARY_SUFFIX} + COMPONENT freeDiameter-radius-gateway) # Note that all compiled plugins are added by the RGWX_ADD_PLUGIN macro in the component freeDiameter-radius-gateway as well.