diff options
author | Volker Krause <vkrause@kde.org> | 2018-02-18 10:04:29 +0100 |
---|---|---|
committer | Volker Krause <vkrause@kde.org> | 2018-02-18 15:36:02 +0100 |
commit | ca65aab3a12b42e4e68faa26680e37f4cb358830 (patch) | |
tree | bf816f81347dfc067ea8fb944ba572445a8b8410 /toolchain | |
parent | e0f78079800c99b1499fe84c999bc588c78a0bc4 (diff) | |
download | extra-cmake-modules-ca65aab3a12b42e4e68faa26680e37f4cb358830.tar.gz extra-cmake-modules-ca65aab3a12b42e4e68faa26680e37f4cb358830.tar.bz2 |
Fix readelf command name on x86
Summary:
The prefix for the command is i686-linux-android, while the toolchain is
x86 in this case. On ARM both values are the same.
Reviewers: #build_system, apol
Reviewed By: apol
Subscribers: #frameworks
Tags: #frameworks, #build_system
Differential Revision: https://phabricator.kde.org/D10625
Diffstat (limited to 'toolchain')
-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 8208b1e9..6aa1a7c7 100644 --- a/toolchain/deployment-file.json.in +++ b/toolchain/deployment-file.json.in @@ -3,7 +3,7 @@ "sdk": "@ANDROID_SDK_ROOT@", "ndk": "@ANDROID_NDK@", "toolchain-prefix": "@ANDROID_TOOLCHAIN@", - "tool-prefix": "@ANDROID_TOOLCHAIN@", + "tool-prefix": "@ANDROID_COMPILER_PREFIX@", "toolchain-version": "@ANDROID_GCC_VERSION@", "ndk-host": "@_HOST@", "target-architecture": "@ANDROID_ABI@", |