mirror of
https://github.com/php/php-src.git
synced 2025-08-17 22:48:57 +02:00

Configure and others are generated, not copied. Seems there's yet much more to do wrt exit status catching.
11 lines
278 B
Batchfile
11 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=
|
|
|