sfox Thu Jun 19 17:14:44 2008 UTC Modified files: (Branch: PHP_5_3) /php-src/win32/build confutils.js Log: - '' != 'no' http://cvs.php.net/viewvc.cgi/php-src/win32/build/confutils.js?r1=1.60.2.1.2.8.2.11&r2=1.60.2.1.2.8.2.12&diff_format=u Index: php-src/win32/build/confutils.js diff -u php-src/win32/build/confutils.js:1.60.2.1.2.8.2.11 php-src/win32/build/confutils.js:1.60.2.1.2.8.2.12 --- php-src/win32/build/confutils.js:1.60.2.1.2.8.2.11 Wed May 14 03:13:17 2008 +++ php-src/win32/build/confutils.js Thu Jun 19 17:14:43 2008 @@ -17,7 +17,7 @@ +----------------------------------------------------------------------+ */ -// $Id: confutils.js,v 1.60.2.1.2.8.2.11 2008/05/14 03:13:17 auroraeosrose Exp $ +// $Id: confutils.js,v 1.60.2.1.2.8.2.12 2008/06/19 17:14:43 sfox Exp $ var STDOUT = WScript.StdOut; var STDERR = WScript.StdErr; @@ -416,7 +416,11 @@ } } if (force) { - argval = "no"; + if (arg.defval == '') { + argval = ''; + } else { + argval = "no"; + } shared = false; } }
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php