From 0a31295667a371f0ca7804e88a116dbc308193fd Mon Sep 17 00:00:00 2001 From: dkl Date: Wed, 7 Jan 2015 01:20:47 +0100 Subject: [PATCH] release script: Don't build win32 libs for win64 build --- contrib/release/build.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/contrib/release/build.sh b/contrib/release/build.sh index a0696b835f..aaab9f345c 100755 --- a/contrib/release/build.sh +++ b/contrib/release/build.sh @@ -432,7 +432,10 @@ function windowsbuild() { cp bin/ld.exe fbcsa/bin/$fbtarget cd fbcsa && make mingw-libs && cd .. - cd fbcsa/lib/win32 && make && cd ../../.. + + if [ $fbtarget = "win32" ]; then + cd fbcsa/lib/win32 && make && cd ../../.. + fi case "$target" in win32)