diff options
author | Balint Reczey <balint@balintreczey.hu> | 2014-05-29 00:32:20 +0700 |
---|---|---|
committer | Alexis La Goutte <alexis.lagoutte@gmail.com> | 2014-05-30 12:48:08 +0000 |
commit | 7bf49b31ace52a0cfbc33ffe29afce5c0befb685 (patch) | |
tree | 8e4111fe450c051d8cc85817954e4dc628540204 /CMakeLists.txt | |
parent | aff380770a8b99c2ac417736cd9f1c049d1da44e (diff) | |
download | wireshark-7bf49b31ace52a0cfbc33ffe29afce5c0befb685.tar.gz wireshark-7bf49b31ace52a0cfbc33ffe29afce5c0befb685.tar.bz2 wireshark-7bf49b31ace52a0cfbc33ffe29afce5c0befb685.zip |
Set PLUGIN_INSTALL_DIR properly for wireshark.pc
Change-Id: I64c04095ce780ce2cc44a54a68695506d27e5747
Reviewed-on: https://code.wireshark.org/review/1861
Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 6cd0905cb2..93c8810e86 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -688,8 +688,8 @@ set_property(GLOBAL PROPERTY USE_FOLDERS ON) if(ENABLE_PLUGINS) set(HAVE_PLUGINS 1) - set(PLUGIN_DIR="${DATAFILE_DIR}/plugins/${CPACK_PACKAGE_VERSION}") - set(PLUGIN_INSTALL_DIR="${CMAKE_INSTALL_LIBDIR}/@CPACK_PACKAGE_NAME@/plugins/${CPACK_PACKAGE_VERSION}") + set(PLUGIN_DIR "${DATAFILE_DIR}/plugins/${CPACK_PACKAGE_VERSION}") + set(PLUGIN_INSTALL_DIR "${CMAKE_INSTALL_LIBDIR}/@CPACK_PACKAGE_NAME@/plugins/${CPACK_PACKAGE_VERSION}") set(PLUGIN_SRC_DIRS plugins/docsis plugins/ethercat |