diff options
-rw-r--r-- | win32/build/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/build/Makefile b/win32/build/Makefile index e21099fa66..e1c64710ba 100644 --- a/win32/build/Makefile +++ b/win32/build/Makefile @@ -243,7 +243,7 @@ really-install: @if not exist $(PHP_PREFIX)\ext mkdir $(PHP_PREFIX)\ext @echo Installing files under $(PHP_PREFIX) @if exist $(BUILD_DIR)\*.exe copy $(BUILD_DIR)\*.exe $(PHP_PREFIX) /y >nul - @touch $(BUILD_DIR)\extension_dlls.txt + @type nul > $(BUILD_DIR)\extension_dlls.txt @if exist $(BUILD_DIR)\php_*.dll copy $(BUILD_DIR)\php_*.dll $(PHP_PREFIX)\ext /y >nul & dir /b $(BUILD_DIR)\php_*.dll > $(BUILD_DIR)\extension_dlls.txt @xcopy $(BUILD_DIR)\*.dll /exclude:$(BUILD_DIR)\extension_dlls.txt $(PHP_PREFIX) /y >nul @echo Registering event source with syslog (requires admin rights) |