diff options
author | Anatol Belski <ab@php.net> | 2017-09-02 16:56:52 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2017-09-02 16:56:52 +0200 |
commit | 24da62d342d271b3d785741a48b7103fece6ed82 (patch) | |
tree | e37c5ce125e6f01eaa2f9ec45641582f7ee78142 /win32 | |
parent | e20a6b0213e108da50293d1fff885f507e6115ac (diff) | |
download | php-git-24da62d342d271b3d785741a48b7103fece6ed82.tar.gz |
Fix command
Diffstat (limited to 'win32')
-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) |