summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2015-07-15 00:28:59 +0100
committerPeter Powell <petpow@saberuk.com>2015-07-15 00:28:59 +0100
commitcd9a2af65ddd081f616754bd733f75af1fefd78b (patch)
treec58be291727ecdf0ac98ff8ef3c557bfb7c974a9 /src/tools
parent4362f53cc38177039d6f6b86565e73800e7b5390 (diff)
Fix support for passing relative install paths to CMake.
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/CMakeLists.txt2
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)