forked from php/php-src
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* PHP-7.2: Fix phpize exit status
- Loading branch information
Showing
1 changed file
with
7 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
@echo off | ||
SET PHP_BUILDCONF_PATH=%~dp0 | ||
cscript /nologo %PHP_BUILDCONF_PATH%\script\phpize.js %* | ||
copy %PHP_BUILDCONF_PATH%\win32\build\configure.bat %PHP_BUILDCONF_PATH% > nul | ||
IF NOT EXIST %PHP_BUILDCONF_PATH% (echo Error generating configure script, configure script was not copied) ELSE (echo Now run 'configure --help') | ||
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= | ||
|