From: Frank M. Kromann Date: Tue, 23 Dec 2003 00:36:32 +0000 (+0000) Subject: Use a variable name so this actually works. X-Git-Tag: php_ibase_before_split~516 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=86c302f590d5aff8165e8e5b0ce98ed5f74c039d;p=php Use a variable name so this actually works. --- diff --git a/win32/build/confutils.js b/win32/build/confutils.js index 0feba9403d..a9237168dd 100644 --- a/win32/build/confutils.js +++ b/win32/build/confutils.js @@ -17,7 +17,7 @@ +----------------------------------------------------------------------+ */ -// $Id: confutils.js,v 1.26 2003-12-23 00:17:15 fmk Exp $ +// $Id: confutils.js,v 1.27 2003-12-23 00:36:32 fmk Exp $ var STDOUT = WScript.StdOut; var STDERR = WScript.StdErr; @@ -157,12 +157,12 @@ function analyze_arg(argval) argval = "yes"; } else if (argval == null) { /* nothing */ - } else if (args = argval.match(new RegExp("^shared,(.*)"))) { + } else if (arg_match = argval.match(new RegExp("^shared,(.*)"))) { shared = true; - argval = args[1]; - } else if (args = argval.match(new RegExp("(.*),shared$"))) { + argval = arg_match[1]; + } else if (arg_match = argval.match(new RegExp("^(.*),shared$"))) { shared = true; - argval = args[1]; + argval = arg_match[1]; } ret[0] = shared;