diff options
Diffstat (limited to 'src/plugins/scripts')
-rw-r--r-- | src/plugins/scripts/lua/CMakeLists.txt | 2 | ||||
-rw-r--r-- | src/plugins/scripts/perl/CMakeLists.txt | 2 | ||||
-rw-r--r-- | src/plugins/scripts/python/CMakeLists.txt | 2 | ||||
-rw-r--r-- | src/plugins/scripts/ruby/CMakeLists.txt | 2 | ||||
-rw-r--r-- | src/plugins/scripts/tcl/CMakeLists.txt | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/src/plugins/scripts/lua/CMakeLists.txt b/src/plugins/scripts/lua/CMakeLists.txt index cde09e646..e64fa92ca 100644 --- a/src/plugins/scripts/lua/CMakeLists.txt +++ b/src/plugins/scripts/lua/CMakeLists.txt @@ -28,4 +28,4 @@ IF(LUA_FOUND) ENDIF(LUA_LIBRARY AND LUALIB_LIBRARY) ENDIF(LUA_FOUND) -INSTALL(TARGETS lua LIBRARY DESTINATION lib/${PROJECT_NAME}/plugins) +INSTALL(TARGETS lua LIBRARY DESTINATION ${LIBDIR}/plugins) diff --git a/src/plugins/scripts/perl/CMakeLists.txt b/src/plugins/scripts/perl/CMakeLists.txt index 52950cfff..ccc0b00fc 100644 --- a/src/plugins/scripts/perl/CMakeLists.txt +++ b/src/plugins/scripts/perl/CMakeLists.txt @@ -35,4 +35,4 @@ IF(PERL_FOUND) ENDIF(PERL_DYNALOADER) ENDIF(PERL_FOUND) -INSTALL(TARGETS perl LIBRARY DESTINATION lib/${PROJECT_NAME}/plugins) +INSTALL(TARGETS perl LIBRARY DESTINATION ${LIBDIR}/plugins) diff --git a/src/plugins/scripts/python/CMakeLists.txt b/src/plugins/scripts/python/CMakeLists.txt index 8495c3290..33ff07edd 100644 --- a/src/plugins/scripts/python/CMakeLists.txt +++ b/src/plugins/scripts/python/CMakeLists.txt @@ -25,4 +25,4 @@ IF(PYTHON_FOUND) TARGET_LINK_LIBRARIES(python ${PYTHON_LIBRARY} weechat_scripts) ENDIF(PYTHON_FOUND) -INSTALL(TARGETS python LIBRARY DESTINATION lib/weechat/plugins) +INSTALL(TARGETS python LIBRARY DESTINATION ${LIBDIR}/plugins) diff --git a/src/plugins/scripts/ruby/CMakeLists.txt b/src/plugins/scripts/ruby/CMakeLists.txt index 452e47907..cf977a254 100644 --- a/src/plugins/scripts/ruby/CMakeLists.txt +++ b/src/plugins/scripts/ruby/CMakeLists.txt @@ -24,4 +24,4 @@ IF(RUBY_FOUND) TARGET_LINK_LIBRARIES(ruby ${RUBY_LIBRARY} weechat_scripts) ENDIF(RUBY_FOUND) -INSTALL(TARGETS ruby LIBRARY DESTINATION lib/${PROJECT_NAME}/plugins) +INSTALL(TARGETS ruby LIBRARY DESTINATION ${LIBDIR}/plugins) diff --git a/src/plugins/scripts/tcl/CMakeLists.txt b/src/plugins/scripts/tcl/CMakeLists.txt index 58cbaa27f..1302bd4e0 100644 --- a/src/plugins/scripts/tcl/CMakeLists.txt +++ b/src/plugins/scripts/tcl/CMakeLists.txt @@ -29,4 +29,4 @@ IF(TCL_FOUND) ENDIF(TCL_FOUND) -INSTALL(TARGETS tcl LIBRARY DESTINATION lib/weechat/plugins) +INSTALL(TARGETS tcl LIBRARY DESTINATION ${LIBDIR}/plugins) |