diff options
author | Helmut Grohne <helmut@subdivi.de> | 2019-05-17 19:41:39 +0000 |
---|---|---|
committer | Niels Thykier <niels@thykier.net> | 2019-05-17 19:52:34 +0000 |
commit | bc0cc3204fd919e362e35f18b7df9547f37d30ce (patch) | |
tree | b158dff52d440dcb1245fa048f23e0c5a3c70a54 /lib | |
parent | 10202ad96b99a1e357b5d11d2dad549ae198fbad (diff) | |
download | debhelper-bc0cc3204fd919e362e35f18b7df9547f37d30ce.tar.gz |
cmake.pm: Emit correct CMAKE_SYSTEM_PROCESSOR for mips64el during cross builds
Signed-off-by: Niels Thykier <niels@thykier.net>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Debian/Debhelper/Buildsystem/cmake.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Debian/Debhelper/Buildsystem/cmake.pm b/lib/Debian/Debhelper/Buildsystem/cmake.pm index ee8abb26..1d5bd1a9 100644 --- a/lib/Debian/Debhelper/Buildsystem/cmake.pm +++ b/lib/Debian/Debhelper/Buildsystem/cmake.pm @@ -27,6 +27,7 @@ my %DEB_HOST2CMAKE_SYSTEM = ( ); my %GNU_CPU2SYSTEM_PROCESSOR = ( + 'mips64el' => 'mips64', 'powerpc64le' => 'ppc64le', ); |