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
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
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

Pull Requests

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: Sun Dec 22 01:01:30 2024 UTC