Proper clean for Windows x64.

Nicky 2013-10-22 23:06:07 +02:00
parent 4ff26225e7
commit bd28032b66
1 changed files with 8 additions and 2 deletions

View File

@ -313,8 +313,14 @@ if [ \( $WANTS_CLEAN -eq $TRUE \) -a \( $WANTS_BUILD -eq $FALSE \) ] ; then
mkdir -p build-darwin-i386/logs
elif [ $PLATFORM == "win32" ] ; then
rm -rf build-vc100/*
mkdir -p build-vc100/logs
if [ "${AUTOBUILD_ARCH}" == "x64" ]
then
rm -rf build-vc100_x64/*
else
rm -rf build-vc100/*
fi
mkdir -p build-vc100/logs
elif [ $PLATFORM == "linux32" ] ; then
rm -rf build-linux-i686/*