summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorirungentoo <irungentoo@gmail.com>2013-08-18 09:46:34 -0700
committerirungentoo <irungentoo@gmail.com>2013-08-18 09:46:34 -0700
commit9533cea058aafb96d7129816510d4a3fcb46cbed (patch)
tree2727ee0c43445190ee649ae31d2d5afdc970ca04
parent93104d1203de8cd6a5786dd4982a6576ced7e8c1 (diff)
parent5df77bdb14379a455016d6454d99c967e052c963 (diff)
Merge pull request #490 from ayberk/master
Fixed broken build paths
-rw-r--r--other/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/other/CMakeLists.txt b/other/CMakeLists.txt
index 10e5b051..eaf677ed 100644
--- a/other/CMakeLists.txt
+++ b/other/CMakeLists.txt
@@ -11,8 +11,8 @@ if(WIN32)
11else() 11else()
12 set(HOME "$ENV{HOME}") 12 set(HOME "$ENV{HOME}")
13 if(APPLE) 13 if(APPLE)
14 file(MAKE_DIRECTORY ${HOME}Library/Application Support/.tox) 14 file(MAKE_DIRECTORY ${HOME}/Library/Application\ Support/.tox)
15 file(INSTALL DHTservers DESTINATION ${HOME}Library/Application Support/.tox) 15 file(INSTALL DHTservers DESTINATION ${HOME}/Library/Application\ Support/.tox)
16 else() 16 else()
17 file(MAKE_DIRECTORY ${HOME}/.tox) 17 file(MAKE_DIRECTORY ${HOME}/.tox)
18 file(INSTALL DHTservers DESTINATION ${HOME}/.tox) 18 file(INSTALL DHTservers DESTINATION ${HOME}/.tox)