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