aboutsummaryrefslogtreecommitdiff
path: root/project/cmake/scripts/windows/pathsetup.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'project/cmake/scripts/windows/pathsetup.cmake')
-rw-r--r--project/cmake/scripts/windows/pathsetup.cmake4
1 files changed, 2 insertions, 2 deletions
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 --")