From: Steph Fox Date: Thu, 19 Jun 2008 17:14:43 +0000 (+0000) Subject: - '' != 'no' X-Git-Tag: php-5.3.0alpha1~715 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=05ce8031add112b76be2e98d879c70fe5502bc42;p=php - '' != 'no' --- diff --git a/win32/build/confutils.js b/win32/build/confutils.js index c9f236fa90..37b55689ce 100644 --- a/win32/build/confutils.js +++ b/win32/build/confutils.js @@ -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 @@ can be built that way. \ } } if (force) { - argval = "no"; + if (arg.defval == '') { + argval = ''; + } else { + argval = "no"; + } shared = false; } }