wez             Thu Feb 12 08:01:15 2004 EDT

  Modified files:              
    /php-src/win32/build        Makefile 
  Log:
  ensure that install exists before copying files.
  
http://cvs.php.net/diff.php/php-src/win32/build/Makefile?r1=1.19&r2=1.20&ty=u
Index: php-src/win32/build/Makefile
diff -u php-src/win32/build/Makefile:1.19 php-src/win32/build/Makefile:1.20
--- php-src/win32/build/Makefile:1.19   Thu Feb 12 07:30:41 2004
+++ php-src/win32/build/Makefile        Thu Feb 12 08:01:14 2004
@@ -14,7 +14,7 @@
 #  | Author: Wez Furlong <[EMAIL PROTECTED]>                           |
 #  +----------------------------------------------------------------------+
 #
-# $Id: Makefile,v 1.19 2004/02/12 12:30:41 wez Exp $
+# $Id: Makefile,v 1.20 2004/02/12 13:01:14 wez Exp $
 # This is the makefile template for the win32 build
 
 CC="$(CL)"
@@ -110,6 +110,7 @@
        $(BUILD_DIR)\php.exe ..\php-installer\build-installer.php "$(BUILD_DIR)" 
"$(PHPDLL)" "$(SAPI_TARGETS)" "$(EXT_TARGETS)" "$(PECL_TARGETS)"
 
 install: all
+       @if not exist $(PHP_PREFIX) mkdir $(PHP_PREFIX)
        @copy $(BUILD_DIR)\*.exe $(PHP_PREFIX) /y >nul
        @copy $(BUILD_DIR)\*.dll $(PHP_PREFIX) /y >nul
        

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to