Makefile: add IF EXISTS guard on del for a Win32 target

Fixes Windows installer builds in a fresh working directory.
This commit is contained in:
Matthew Flatt 2014-05-22 16:09:21 +01:00
parent 37a4a9ada6
commit 52e2d7b1c9

View File

@ -468,7 +468,7 @@ client:
$(MAKE) installer-from-bundle $(COPY_ARGS)
win32-client:
cmd /c del /f /s /q build\user
IF EXIST build\user cmd /c del /f /s /q build\user
$(MAKE) win32-base $(COPY_ARGS)
$(MAKE) win32-distro-build-from-server $(COPY_ARGS)
$(MAKE) win32-bundle-from-server $(COPY_ARGS)