mirror of
https://github.com/php/php-src.git
synced 2026-03-27 17:52:16 +01:00
Configure and others are generated, not copied. Seems there's yet much more to do wrt exit status catching.
12 lines
278 B
Batchfile
12 lines
278 B
Batchfile
@echo off
|
|
SET PHP_BUILDCONF_PATH=%~dp0
|
|
cscript /nologo %PHP_BUILDCONF_PATH%\script\phpize.js %*
|
|
IF NOT EXIST configure.bat (
|
|
echo Error generating configure script, configure script was not copied
|
|
exit /b 3
|
|
) ELSE (
|
|
echo Now run 'configure --help'
|
|
)
|
|
SET PHP_BUILDCONF_PATH=
|
|
|