diff options
author | Tom Rondeau <tom@trondeau.com> | 2014-09-30 22:03:05 -0400 |
---|---|---|
committer | Tom Rondeau <tom@trondeau.com> | 2014-09-30 22:03:05 -0400 |
commit | 7c11fc4ab25f3085b5f6ee9d567910db5ab1ad03 (patch) | |
tree | 36e266d59f2d29b035fe8c9bbcd2180361dbb662 | |
parent | f303778629e2a6566671a8700f8037f190985634 (diff) |
runtime: fix installation location of the gr_log_default.conf log configuration file.
Addresses issue #720.
-rw-r--r-- | gnuradio-runtime/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnuradio-runtime/CMakeLists.txt b/gnuradio-runtime/CMakeLists.txt index 1f942429a0..7660642509 100644 --- a/gnuradio-runtime/CMakeLists.txt +++ b/gnuradio-runtime/CMakeLists.txt @@ -136,7 +136,7 @@ install( if(ENABLE_GR_LOG AND HAVE_LOG4CPP) install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/gr_log_default.conf - DESTINATION ${GR_CONF_DIR}/gnuradio + DESTINATION ${GR_PREFSDIR} COMPONENT "runtime_runtime" ) endif(ENABLE_GR_LOG AND HAVE_LOG4CPP) |