From 90188e88751eaf5f9b9dd9c001f3e84e95643a83 Mon Sep 17 00:00:00 2001 From: Rafael Kitover Date: Wed, 27 Jun 2018 01:49:26 +0000 Subject: [PATCH] installdeps: fix build instructions for mxe Change cmake executable prefix from `x86-64` to the correct `x86_64` for the 64 bit architecture. --- installdeps | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/installdeps b/installdeps index 660e8ece..245efd66 100755 --- a/installdeps +++ b/installdeps @@ -283,17 +283,17 @@ debian_installdeps() { case "$target" in mingw-w64-i686) target='i686-w64-mingw32.static' + CMAKE="/usr/lib/mxe/usr/bin/i686-w64-mingw32.static-cmake" ;; mingw-w64-x86_64) target='x86-64-w64-mingw32.static' + CMAKE="/usr/lib/mxe/usr/bin/x86_64-w64-mingw32.static-cmake" ;; *) error "unknown cross target (you shouldn't see this)" ;; esac - CMAKE="/usr/lib/mxe/usr/bin/${target}-cmake" - mxe_apt_sources='/etc/apt/sources.list.d/mxeapt.list' sudo apt-get -qq update