From 2c3c75ae556431587074832ff69c49cee0fb4639 Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Thu, 12 Feb 2004 13:01:14 +0000 Subject: [PATCH] ensure that install exists before copying files. --- win32/build/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/win32/build/Makefile b/win32/build/Makefile index 54b1f53e2ff..f38f9cbbb9e 100644 --- a/win32/build/Makefile +++ b/win32/build/Makefile @@ -110,6 +110,7 @@ msi-installer: dist $(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