From: Wez Furlong Date: Tue, 18 May 2004 21:07:01 +0000 (+0000) Subject: Fix #27638: not cleaning up object files in win32 build X-Git-Tag: RELEASE_0_1~130 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8d9ced8282f816c3852211d4c5e29715af1b6b08;p=php Fix #27638: not cleaning up object files in win32 build --- diff --git a/win32/build/Makefile b/win32/build/Makefile index b2f40f04c1..1f913e5328 100644 --- a/win32/build/Makefile +++ b/win32/build/Makefile @@ -72,7 +72,7 @@ clean-sapi: clean: clean-sapi @echo Cleaning build dirs - @for %D in (_x $(BUILD_DIRS_SUB)) do @if exist @del /F /Q %D\*.* > NUL + @for %D in (_x $(BUILD_DIRS_SUB)) do @if exist %D @del /F /Q %D\*.* > NUL -@del /F /Q $(BUILD_DIR)\*.res $(BUILD_DIR)\*.lib $(BUILD_DIR)\*.ilk $(BUILD_DIR)\*.pdb $(BUILD_DIR)\*.exp $(PHPDEF) $(BUILD_DIR)\php-$(PHP_VERSION_STRING).zip > NUL -rmdir /s /q $(BUILD_DIR)\php-$(PHP_VERSION_STRING)