Skip to content

Commit

Permalink
release script: Don't build win32 libs for win64 build
Browse files Browse the repository at this point in the history
  • Loading branch information
dkl committed Jan 7, 2015
1 parent a67a6e4 commit 0a31295
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion contrib/release/build.sh
Expand Up @@ -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)
Expand Down

0 comments on commit 0a31295

Please sign in to comment.