mirror of
https://github.com/php/php-src.git
synced 2026-03-27 17:52:16 +01:00
* Redirect the "1 file(s) copied" message to nul * Check if configure script was copied, and output an error if it wasn't
7 lines
353 B
Batchfile
7 lines
353 B
Batchfile
@echo off
|
|
cscript /nologo win32\build\buildconf.js %*
|
|
SET PHP_BUILDCONF_PATH=%~dp0
|
|
copy %PHP_BUILDCONF_PATH%\win32\build\configure.bat %PHP_BUILDCONF_PATH% > nul
|
|
SET PHP_SDK_SCRIPT_PATH=
|
|
|
|
IF NOT EXIST %PHP_BUILDCONF_PATH% (echo Error generating configure script, configure script was not copied) ELSE (echo Now run 'cscript /nologo configure.js --help') |