From 9b39f0a5a8d38c2764a90b2200b71470e77c5326 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Sat, 7 Apr 2018 09:07:52 +0200 Subject: [PATCH] Windows cross env: use LOCAL_PKG_LIST for restricting list of packages compiled by default --- tools/windows/setup_cross_compilation_env.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tools/windows/setup_cross_compilation_env.sh b/tools/windows/setup_cross_compilation_env.sh index 60e957fee..ea9969f01 100755 --- a/tools/windows/setup_cross_compilation_env.sh +++ b/tools/windows/setup_cross_compilation_env.sh @@ -53,7 +53,9 @@ JOBS = ${PARALLEL} MKVTOOLNIX_DEPENDENCIES=gettext libiconv zlib boost file flac lzo ogg pthreads vorbis cmark MKVTOOLNIX_DEPENDENCIES+=qtbase qttranslations qtwinextras -mkvtoolnix-deps: \$(MKVTOOLNIX_DEPENDENCIES) +LOCAL_PKG_LIST=\$(MKVTOOLNIX_DEPENDENCIES) +local-pkg-list: \$(LOCAL_PKG_LIST) +mkvtoolnix-deps: local-pkg-list EOF } @@ -115,7 +117,7 @@ function configure_mkvtoolnix { function build_libraries { echo Building the cross-compiler and the required libraries cd ${INSTALL_DIR} - make mkvtoolnix-deps >> $LOGFILE 2>&1 + make >> $LOGFILE 2>&1 } # main