php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #33677 phpize script was uses wrong eval
Submitted: 2005-07-13 13:03 UTC Modified: 2005-07-13 19:02 UTC
From: ramsy at ramix dot jp Assigned:
Status: Not a bug Package: Unknown/Other Function
PHP Version: 4.4.0 OS: Linux
Private report: No CVE-ID: None
View Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
If you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: ramsy at ramix dot jp
New email:
PHP Version: OS:

 

 [2005-07-13 13:03 UTC] ramsy at ramix dot jp
Description:
------------
There is no meaning that uses eval though it is changed in "Scripts/phpize.in" as 
follows. 

-phpdir="$prefix/lib/php/build"
-includedir="$prefix/include/php"
+exec_prefix="`eval echo @exec_prefix@`"
+phpdir="`eval echo @libdir@`/build"
+includedir="`eval echo @includedir@`/php"

I think that I should change as follows. 

+exec_prefix="@exec_prefix@"
+phpdir="@libdir@/build"
+includedir="@includedir@/php"



Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2005-07-13 19:02 UTC] sniper@php.net
It is necessary to eval those. If you have some real problem, do tell us. (FYI: It was like that before, and it didn't work correctly)


 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Wed Sep 17 11:00:01 2025 UTC