summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--win32/build/Makefile5
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)