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.
This commit is contained in:
Rafael Kitover 2018-06-27 01:58:33 +00:00
parent 90188e8875
commit 77a3673d04
1 changed files with 2 additions and 1 deletions

View File

@ -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