diff options
author | Aleix Pol <aleixpol@kde.org> | 2015-09-13 02:04:07 +0200 |
---|---|---|
committer | Aleix Pol <aleixpol@kde.org> | 2015-09-13 02:04:07 +0200 |
commit | 94c9958d41b145124ba5c96777f29e8eb81df160 (patch) | |
tree | 80fdbb09e272583f9127b91b8a6481d05177c0c9 | |
parent | 3915bacd6055087bf71ccabc5c9ddf15743f4e9a (diff) | |
download | extra-cmake-modules-94c9958d41b145124ba5c96777f29e8eb81df160.tar.gz extra-cmake-modules-94c9958d41b145124ba5c96777f29e8eb81df160.tar.bz2 |
Look for the files in the installed prefix rather the prefix path
In general, we are looking for what we're installing, not for what we
already had.
-rw-r--r-- | toolchain/deployment-file.json.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolchain/deployment-file.json.in b/toolchain/deployment-file.json.in index 1e52e5a0..8534cd2f 100644 --- a/toolchain/deployment-file.json.in +++ b/toolchain/deployment-file.json.in @@ -9,7 +9,7 @@ "target-architecture": "@ANDROID_ABI@", "application-binary": "@EXECUTABLE_DESTINATION_PATH@", "android-extra-libs": "@_DEPS@", - "android-extra-plugins": "@CMAKE_PREFIX_PATH@/share,@CMAKE_PREFIX_PATH@/lib/qml", + "android-extra-plugins": "@CMAKE_INSTALL_PREFIX@/share,@CMAKE_INSTALL_PREFIX@/lib/qml", "android-package-source-directory": "@ANDROID_APK_DIR@", "sdkBuildToolsRevision": "@ANDROID_SDK_BUILD_TOOLS_REVISION@" } |