From bd7a3c966ed862297d3496df7b5017a6c5b7b6a1 Mon Sep 17 00:00:00 2001 From: baldurk Date: Sat, 18 Aug 2018 18:18:03 +0100 Subject: [PATCH] Don't copy .lib files as we don't need them --- util/buildscripts/scripts/make_package_win32.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/util/buildscripts/scripts/make_package_win32.sh b/util/buildscripts/scripts/make_package_win32.sh index dd27951e5..8c4fea2a3 100755 --- a/util/buildscripts/scripts/make_package_win32.sh +++ b/util/buildscripts/scripts/make_package_win32.sh @@ -20,11 +20,11 @@ mkdir -p dist/Release{32,64} # Copy files from release build in, without copying obj/ pushd x64/Release -find * -not -path 'obj*' -and -not -path 'pymodules*' -exec cp -r --parents '{}' ../../dist/Release64/ \; +find * -not -path 'obj*' -and -not -path '*.lib' -and -not -path 'pymodules*' -exec cp -r --parents '{}' ../../dist/Release64/ \; popd pushd Win32/Release -find * -not -path 'obj*' -and -not -path 'pymodules*' -exec cp -r --parents '{}' ../../dist/Release32/ \; +find * -not -path 'obj*' -and -not -path '*.lib' -and -not -path 'pymodules*' -exec cp -r --parents '{}' ../../dist/Release32/ \; popd # Copy in d3dcompiler from windows kit. Prefer 10 over 8.1 but either works