Skip to content

Commit

Permalink
Merge branch 'PHP-7.2'
Browse files Browse the repository at this point in the history
* PHP-7.2:
  Fix phpize exit status
  • Loading branch information
weltling committed Aug 18, 2017
2 parents 86bd6ab + 6c3c880 commit 3acfdbb
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions win32/build/phpize.bat
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=

0 comments on commit 3acfdbb

Please sign in to comment.