From: Sebastian Pipping Date: Sun, 6 Oct 2019 19:26:47 +0000 (+0200) Subject: coverage.sh: Copy libexpat.dll as well X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=41c8dc177114eb9f00bf3ccac8734196fc1f28fa;p=libexpat coverage.sh: Copy libexpat.dll as well --- diff --git a/expat/coverage.sh b/expat/coverage.sh index 2624ff96..26a200b2 100755 --- a/expat/coverage.sh +++ b/expat/coverage.sh @@ -94,12 +94,21 @@ _copy_missing_mingw_libaries() { ) done fi + + for dll in libexpat.dll; do + ( + set -x + ln -s "${abs_build_dir}"/${dll} "${target}"/${dll} + ) + done } _run() { local source_dir="$1" local build_dir="$2" + local abs_source_dir="${PWD}/${source_dir}" + local abs_build_dir="${PWD}/${build_dir}" local capture_dir=lib local BASE_FLAGS='-pipe -Wall -Wextra -pedantic -Wno-overlength-strings'