diff options
author | Peter Powell <petpow@saberuk.com> | 2015-07-15 00:28:59 +0100 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2015-07-15 00:28:59 +0100 |
commit | cd9a2af65ddd081f616754bd733f75af1fefd78b (patch) | |
tree | c58be291727ecdf0ac98ff8ef3c557bfb7c974a9 /src/tools | |
parent | 4362f53cc38177039d6f6b86565e73800e7b5390 (diff) |
Fix support for passing relative install paths to CMake.
Diffstat (limited to 'src/tools')
-rw-r--r-- | src/tools/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/CMakeLists.txt b/src/tools/CMakeLists.txt index e547a2e9a..ef2f3b15b 100644 --- a/src/tools/CMakeLists.txt +++ b/src/tools/CMakeLists.txt @@ -48,5 +48,5 @@ endif(NOT WIN32) # On non-Windows platforms, if RUNGROUP is set, change the permissions of the tools directory if(NOT WIN32 AND RUNGROUP) - install(CODE "execute_process(COMMAND ${CHMOD} 2770 \"\$ENV{DESTDIR}/${CMAKE_INSTALL_PREFIX}/bin\")") + install(CODE "execute_process(COMMAND ${CHMOD} 2770 \"\$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin\")") endif(NOT WIN32 AND RUNGROUP) |