diff options
author | h.udo <hudokkow@gmail.com> | 2016-04-11 14:53:18 +0100 |
---|---|---|
committer | h.udo <hudokkow@gmail.com> | 2016-04-15 13:21:44 +0100 |
commit | c811a73387dc779d7a0f1dfdf840113cbef4303e (patch) | |
tree | b6b6a8591d5aa38dfcf8f71ec8e5351c9e956264 /project | |
parent | 991ee5cfbe13cd5a8c3c6477f379c8d4fc9df9f2 (diff) |
[cmake] Fix for Kodi refusing to run outside build dir
Diffstat (limited to 'project')
-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 1296060cd8..071dfd45ea 100644 --- a/project/cmake/scripts/darwin/pathsetup.cmake +++ b/project/cmake/scripts/darwin/pathsetup.cmake @@ -28,5 +28,5 @@ list(APPEND final_message "Includedir: ${includedir}") list(APPEND final_message "Datarootdir: ${datarootdir}") list(APPEND final_message "Datadir: ${datadir}") -set(PATH_DEFINES -DBIN_INSTALL_PATH=\"${libdir}/xbmc\" - -DINSTALL_PATH=\"${datarootdir}/xbmc\") +set(PATH_DEFINES -DBIN_INSTALL_PATH=\"${libdir}/kodi\" + -DINSTALL_PATH=\"${datarootdir}/kodi\") diff --git a/project/cmake/scripts/linux/pathsetup.cmake b/project/cmake/scripts/linux/pathsetup.cmake index 801ae856fb..8550616cd7 100644 --- a/project/cmake/scripts/linux/pathsetup.cmake +++ b/project/cmake/scripts/linux/pathsetup.cmake @@ -30,5 +30,5 @@ list(APPEND final_message "Includedir: ${includedir}") list(APPEND final_message "Datarootdir: ${datarootdir}") list(APPEND final_message "Datadir: ${datadir}") -set(PATH_DEFINES -DBIN_INSTALL_PATH=\"${libdir}/xbmc\" - -DINSTALL_PATH=\"${datarootdir}/xbmc\") +set(PATH_DEFINES -DBIN_INSTALL_PATH=\"${libdir}/kodi\" + -DINSTALL_PATH=\"${datarootdir}/kodi\") diff --git a/project/cmake/scripts/windows/pathsetup.cmake b/project/cmake/scripts/windows/pathsetup.cmake index 801ae856fb..8550616cd7 100644 --- a/project/cmake/scripts/windows/pathsetup.cmake +++ b/project/cmake/scripts/windows/pathsetup.cmake @@ -30,5 +30,5 @@ list(APPEND final_message "Includedir: ${includedir}") list(APPEND final_message "Datarootdir: ${datarootdir}") list(APPEND final_message "Datadir: ${datadir}") -set(PATH_DEFINES -DBIN_INSTALL_PATH=\"${libdir}/xbmc\" - -DINSTALL_PATH=\"${datarootdir}/xbmc\") +set(PATH_DEFINES -DBIN_INSTALL_PATH=\"${libdir}/kodi\" + -DINSTALL_PATH=\"${datarootdir}/kodi\") |