mirror of
https://github.com/php/php-src.git
synced 2025-08-16 22:18:50 +02:00
- '' != 'no'
This commit is contained in:
parent
0928653619
commit
05ce8031ad
1 changed files with 6 additions and 2 deletions
|
@ -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 STDOUT = WScript.StdOut;
|
||||||
var STDERR = WScript.StdErr;
|
var STDERR = WScript.StdErr;
|
||||||
|
@ -416,7 +416,11 @@ can be built that way. \
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (force) {
|
if (force) {
|
||||||
argval = "no";
|
if (arg.defval == '') {
|
||||||
|
argval = '';
|
||||||
|
} else {
|
||||||
|
argval = "no";
|
||||||
|
}
|
||||||
shared = false;
|
shared = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue