We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7f4e67 commit 065551bCopy full SHA for 065551b
win32/build/phpize.bat
@@ -1,6 +1,11 @@
1
@echo off
2
SET PHP_BUILDCONF_PATH=%~dp0
3
cscript /nologo %PHP_BUILDCONF_PATH%\script\phpize.js %*
4
-copy %PHP_BUILDCONF_PATH%\win32\build\configure.bat %PHP_BUILDCONF_PATH% > nul
5
-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
6
+ exit /b 3
7
+) ELSE (
8
+ echo Now run 'configure --help'
9
+)
10
SET PHP_BUILDCONF_PATH=
11
+
0 commit comments