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
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: 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: Fri Dec 05 14:00:02 2025 UTC