wez Tue May 18 17:07:02 2004 EDT Modified files: /php-src/win32/build Makefile Log: Fix #27638: not cleaning up object files in win32 build http://cvs.php.net/diff.php/php-src/win32/build/Makefile?r1=1.21&r2=1.22&ty=u Index: php-src/win32/build/Makefile diff -u php-src/win32/build/Makefile:1.21 php-src/win32/build/Makefile:1.22 --- php-src/win32/build/Makefile:1.21 Thu Feb 12 12:58:52 2004 +++ php-src/win32/build/Makefile Tue May 18 17:07:01 2004 @@ -14,7 +14,7 @@ # | Author: Wez Furlong <[EMAIL PROTECTED]> | # +----------------------------------------------------------------------+ # -# $Id: Makefile,v 1.21 2004/02/12 17:58:52 wez Exp $ +# $Id: Makefile,v 1.22 2004/05/18 21:07:01 wez Exp $ # This is the makefile template for the win32 build CC="$(CL)" @@ -72,7 +72,7 @@ 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 [EMAIL PROTECTED] /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)
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php