aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorh.udo <hudokkow@gmail.com>2016-04-07 13:55:32 +0100
committerh.udo <hudokkow@gmail.com>2016-04-15 13:21:43 +0100
commitd8fafd6198c6d946d29757fae8d291076abba4d9 (patch)
tree5c0d172a952b39b315d4e2ff70c29ace0bfc45a7
parentbdbd0af58fd4e29688b1b13cc4707a19ceba8f62 (diff)
[cmake] Fix stray '\' in exec_prefix and datadir
-rw-r--r--project/cmake/scripts/darwin/pathsetup.cmake4
-rw-r--r--project/cmake/scripts/linux/pathsetup.cmake4
-rw-r--r--project/cmake/scripts/windows/pathsetup.cmake4
3 files changed, 6 insertions, 6 deletions
diff --git a/project/cmake/scripts/darwin/pathsetup.cmake b/project/cmake/scripts/darwin/pathsetup.cmake
index e31f66eff8..1296060cd8 100644
--- a/project/cmake/scripts/darwin/pathsetup.cmake
+++ b/project/cmake/scripts/darwin/pathsetup.cmake
@@ -2,7 +2,7 @@ if(NOT prefix)
set(prefix ${DEPENDS_PATH})
endif()
if(NOT exec_prefix)
- set(exec_prefix \${prefix})
+ set(exec_prefix ${prefix})
endif()
if(NOT libdir)
set(libdir ${prefix}/lib)
@@ -17,7 +17,7 @@ if(NOT datarootdir)
set(datarootdir ${prefix}/share)
endif()
if(NOT datadir)
- set(datadir \${datarootdir})
+ set(datadir ${datarootdir})
endif()
list(APPEND final_message "-- PATH config --")
diff --git a/project/cmake/scripts/linux/pathsetup.cmake b/project/cmake/scripts/linux/pathsetup.cmake
index 940fb620e4..801ae856fb 100644
--- a/project/cmake/scripts/linux/pathsetup.cmake
+++ b/project/cmake/scripts/linux/pathsetup.cmake
@@ -4,7 +4,7 @@ else()
set(CMAKE_INSTALL_PREFIX ${prefix})
endif()
if(NOT exec_prefix)
- set(exec_prefix \${prefix})
+ set(exec_prefix ${prefix})
endif()
if(NOT libdir)
set(libdir ${prefix}/lib)
@@ -19,7 +19,7 @@ if(NOT datarootdir)
set(datarootdir ${prefix}/share)
endif()
if(NOT datadir)
- set(datadir \${datarootdir})
+ set(datadir ${datarootdir})
endif()
list(APPEND final_message "-- PATH config --")
diff --git a/project/cmake/scripts/windows/pathsetup.cmake b/project/cmake/scripts/windows/pathsetup.cmake
index 940fb620e4..801ae856fb 100644
--- a/project/cmake/scripts/windows/pathsetup.cmake
+++ b/project/cmake/scripts/windows/pathsetup.cmake
@@ -4,7 +4,7 @@ else()
set(CMAKE_INSTALL_PREFIX ${prefix})
endif()
if(NOT exec_prefix)
- set(exec_prefix \${prefix})
+ set(exec_prefix ${prefix})
endif()
if(NOT libdir)
set(libdir ${prefix}/lib)
@@ -19,7 +19,7 @@ if(NOT datarootdir)
set(datarootdir ${prefix}/share)
endif()
if(NOT datadir)
- set(datadir \${datarootdir})
+ set(datadir ${datarootdir})
endif()
list(APPEND final_message "-- PATH config --")