From 77a3673d044cd9afd3726cad94640001d6e48869 Mon Sep 17 00:00:00 2001 From: Rafael Kitover Date: Wed, 27 Jun 2018 01:58:33 +0000 Subject: [PATCH] installdeps: install wx-common for mxe for wxrc When cross building for win32, native wxrc is needed to generate xrc files, add wx-common to mxe dependencies which provides it. --- installdeps | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/installdeps b/installdeps index 245efd66..9710127a 100755 --- a/installdeps +++ b/installdeps @@ -311,7 +311,8 @@ debian_installdeps() { set -- "$@" "mxe-${target}-$dep" done check sudo apt-get -qq update - check sudo apt-get -qy install build-essential cmake "$@" + # native wx-common needed for wxrc executable + check sudo apt-get -qy install build-essential cmake wx-common "$@" fi build_instructions