aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn Szakmeister <john@szakmeister.net>2014-09-22 05:56:59 -0400
committerJohn Szakmeister <john@szakmeister.net>2014-09-22 05:56:59 -0400
commita4b9e0df67ae95777f8f7d833e7d4c6b8fc3840c (patch)
treebf4c79a74728022dd5566d6373cc9e6e7ac39831 /src
parent2f212ca2ebec9a735c3ae4904fc1a1adbeb5d908 (diff)
parent0d35369324e75b2abfbfd59978939c16f7960d23 (diff)
downloadrneovim-a4b9e0df67ae95777f8f7d833e7d4c6b8fc3840c.tar.gz
rneovim-a4b9e0df67ae95777f8f7d833e7d4c6b8fc3840c.tar.bz2
rneovim-a4b9e0df67ae95777f8f7d833e7d4c6b8fc3840c.zip
Merge #1213 'Fix install permissions'
Diffstat (limited to 'src')
-rw-r--r--src/nvim/CMakeLists.txt2
-rw-r--r--src/nvim/po/CMakeLists.txt2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/CMakeLists.txt b/src/nvim/CMakeLists.txt
index 83de3347bd..208df31596 100644
--- a/src/nvim/CMakeLists.txt
+++ b/src/nvim/CMakeLists.txt
@@ -174,7 +174,7 @@ if(NOT DEFINED ENV{SKIP_EXEC})
add_executable(nvim ${NEOVIM_GENERATED_SOURCES} ${NEOVIM_SOURCES}
${NEOVIM_HEADERS})
target_link_libraries(nvim ${NVIM_LINK_LIBRARIES})
- install(TARGETS nvim RUNTIME DESTINATION bin)
+ install_helper(TARGETS nvim)
endif()
if(NOT DEFINED ENV{SKIP_UNITTEST})
diff --git a/src/nvim/po/CMakeLists.txt b/src/nvim/po/CMakeLists.txt
index 4a9c97dc20..0ed39e8c49 100644
--- a/src/nvim/po/CMakeLists.txt
+++ b/src/nvim/po/CMakeLists.txt
@@ -71,7 +71,7 @@ if(HAVE_WORKING_LIBINTL AND GETTEXT_FOUND AND XGETTEXT_PRG AND ICONV_PRG AND
-P ${CMAKE_MODULE_PATH}/RunMsgfmt.cmake
DEPENDS ${poFile} ${NVIM_POT})
- install(
+ install_helper(
FILES ${moFile}
DESTINATION share/locale/${name}/LC_MESSAGES
RENAME nvim.mo)