diff options
author | Wez Furlong <wez@php.net> | 2005-06-05 02:33:26 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2005-06-05 02:33:26 +0000 |
commit | b227a512012454297b5bc3eeecc5eba8907b675c (patch) | |
tree | 2b1116d0f231a980792c96e0b742f8168ad590ab /win32 | |
parent | 664faf8411f2e8f53c2d6cf8809de373c9615023 (diff) | |
download | php-git-b227a512012454297b5bc3eeecc5eba8907b675c.tar.gz |
make "nmake install" more verbose.
Diffstat (limited to 'win32')
-rw-r--r-- | win32/build/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/win32/build/Makefile b/win32/build/Makefile index 20d81693ef..d249efa1be 100644 --- a/win32/build/Makefile +++ b/win32/build/Makefile @@ -134,8 +134,11 @@ install: really-install really-install: @if not exist $(PHP_PREFIX) mkdir $(PHP_PREFIX) + @echo Installing files under $(PHP_PREFIX) @copy $(BUILD_DIR)\*.exe $(PHP_PREFIX) /y >nul @copy $(BUILD_DIR)\*.dll $(PHP_PREFIX) /y >nul - $(PHP_PREFIX)\php.exe -n -dextension_dir=$(PHP_PREFIX) win32/build/registersyslog.php $(PHP_PREFIX)\$(PHPDLL) + @echo Registering event source with syslog (requires admin rights) + @echo It's okay for this step to fail: + -$(PHP_PREFIX)\php.exe -n -dextension_dir=$(PHP_PREFIX) win32/build/registersyslog.php $(PHP_PREFIX)\$(PHPDLL) |