php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #15404 $shared variable not quoted on line 36356 of configure script
Submitted: 2002-02-06 14:02 UTC Modified: 2002-02-06 14:10 UTC
From: rlynch at sybase dot com Assigned:
Status: Closed Package: *Compile Issues
PHP Version: 4.1.1 OS: Solaris 8
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: rlynch at sybase dot com
New email:
PHP Version: OS:

 

 [2002-02-06 14:02 UTC] rlynch at sybase dot com
When running the following configure command:

php-4.1.1>./configure --prefix=/opt/php --without-mysql --with-apxs=/opt/apache/bin/apxs --with-custom-odbc=/duplicate/sybase/SYBSsa7

I would get the following error:
<snip>
checking for Empress support... no
checking for Empress local access support... no
checking for Velocis support... no
checking for a custom ODBC support... yes
./configure: test: argument expected


Investigation revealed that the $shared variable on line 36356 of the configure script was not quoted:

    if test $shared != "yes"; then

After quoting the $shared variable, the configure completed successfully:

    if test "$shared" != "yes"; then

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-02-06 14:10 UTC] derick@php.net
This bug has been fixed in CVS.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 25 15:01:30 2024 UTC