Skip to content

Commit

Permalink
Check if configure script was copied, and output an error if it wasn't
Browse files Browse the repository at this point in the history
  • Loading branch information
KalleZ committed Jan 2, 2009
1 parent 0383c01 commit be8d3a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 2 additions & 0 deletions buildconf.bat
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@ cscript /nologo win32\build\buildconf.js %*
SET PHP_BUILDCONF_PATH=%~dp0
copy %PHP_BUILDCONF_PATH%\win32\build\configure.bat %PHP_BUILDCONF_PATH% > nul
SET PHP_SDK_SCRIPT_PATH=

IF NOT EXIST %PHP_BUILDCONF_PATH% (echo Error generating configure script, configure script was not copied) ELSE (echo Now run 'configure --help')
3 changes: 1 addition & 2 deletions win32/build/buildconf.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
+----------------------------------------------------------------------+
*/

/* $Id: buildconf.js,v 1.19 2008-07-21 09:56:37 sfox Exp $ */
/* $Id: buildconf.js,v 1.20 2009-01-02 12:16:42 kalle Exp $ */
// This generates a configure script for win32 build

WScript.StdOut.WriteLine("Rebuilding configure.js");
Expand Down Expand Up @@ -278,4 +278,3 @@ C.Write(file_get_contents("win32/build/configure.tail"));

B.WriteLine("@echo off");
B.WriteLine("cscript /nologo configure.js %*");
WScript.StdOut.WriteLine("Now run 'configure --help'");

0 comments on commit be8d3a6

Please sign in to comment.