From 4441dd177eec3393646e4fde7c711a3823a8d8a6 Mon Sep 17 00:00:00 2001 From: Robin Mills Date: Sun, 18 Sep 2016 13:24:55 +0000 Subject: [PATCH] #1109 Working in Progress on MinGW/32 daily build. --- contrib/buildserver/cmake_daily.sh | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/contrib/buildserver/cmake_daily.sh b/contrib/buildserver/cmake_daily.sh index a78eaab3..1c02ba5a 100755 --- a/contrib/buildserver/cmake_daily.sh +++ b/contrib/buildserver/cmake_daily.sh @@ -3,6 +3,8 @@ ## # cmake_daily.sh ## +PATH="$PATH:/usr/local/bin/" + source $(find . -name buildserver.library) ## @@ -153,10 +155,8 @@ testBuild() export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig make samples - mkdir -p "$dist/samples" - cp samples/* "$dist/samples" - mkdir -p "$dist/bin" - cp bin/*.exe "$dist/bin" + mkdir -p "$dist/bin" + cp bin/*.exe "$dist/bin" # copy bin lib include to dist for d in bin lib include; do @@ -253,6 +253,8 @@ if [ "$result" == "0" ]; then # add documentation and samples to dist cat contrib/buildserver/dailyReadMe.txt | sed -E -e "s/__BUILD__/$zip/" > "$build/dist/ReadMe.txt" + mkdir -p "$dist/samples/" + cp samples/* "$dist/samples/" # create the bundle pushd "$build" > /dev/null