]> granicus.if.org Git - php/commitdiff
Avoid error messages, if the variable is empty.
authorSascha Schumann <sas@php.net>
Tue, 2 Jul 2002 09:31:33 +0000 (09:31 +0000)
committerSascha Schumann <sas@php.net>
Tue, 2 Jul 2002 09:31:33 +0000 (09:31 +0000)
./config.status: test: !=: unary operator expected

configure.in

index 103afab681c43af7cf7b0262f70bfc26bd7f3222..f92ff6a905dfb328feb569adca76582e3bfc8590 100644 (file)
@@ -1243,7 +1243,7 @@ cat <<X
 X
   fi
 
-  if test "$MYSQL_MODULE_TYPE" = "builtin" && test "$PHP_SAPI" != "cgi" && test "$PHP_SAPI" != "cli" && test $php_multiple_shlib_versions_ok != "yes"; then
+  if test "$MYSQL_MODULE_TYPE" = "builtin" && test "$PHP_SAPI" != "cgi" && test "$PHP_SAPI" != "cli" && test "$php_multiple_shlib_versions_ok" != "yes"; then
 cat <<X
 +--------------------------------------------------------------------+
 |                        *** WARNING ***                             |