diff options
-rw-r--r-- | project/cmake/scripts/darwin/pathsetup.cmake | 4 | ||||
-rw-r--r-- | project/cmake/scripts/linux/pathsetup.cmake | 4 | ||||
-rw-r--r-- | project/cmake/scripts/windows/pathsetup.cmake | 4 |
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 --") |