Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:24075 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 27042 invoked by uid 1010); 10 Jun 2006 11:24:20 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 27027 invoked from network); 10 Jun 2006 11:24:20 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 10 Jun 2006 11:24:20 -0000 X-PHP-List-Original-Sender: sesser@php.net X-Host-Fingerprint: 81.169.145.170 natlemon.rzone.de Solaris 10 (beta) Received: from ([81.169.145.170:43110] helo=natlemon.rzone.de) by pb1.pair.com (ecelerity 2.0 beta r(6323M)) with SMTP id ED/52-30619-3EBAA844 for ; Sat, 10 Jun 2006 07:24:19 -0400 Received: from [192.168.1.77] (p508761A5.dip.t-dialin.net [80.135.97.165]) by post.webmailer.de (8.13.6/8.13.6) with ESMTP id k5ABOANN008450 for ; Sat, 10 Jun 2006 13:24:10 +0200 (MEST) Message-ID: <448AABD9.7080408@php.net> Date: Sat, 10 Jun 2006 13:24:09 +0200 User-Agent: Thunderbird 1.5.0.4 (Windows/20060516) MIME-Version: 1.0 To: PHP internals X-Enigmail-Version: 0.94.0.0 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Subject: PHPIZE Bug From: sesser@php.net (Stefan Esser) Good morning, i think there is a problem in phpize that I just run into in phpize.in we have ... prefix="@prefix@" ... phpize_replace_prefix() { sed \ -e *"s#@prefix@#$prefix#"* \ < *"$phpdir/phpize.m4"* > configure.*in* } This is in my opinion wrong, because @prefix@ and $prefix are obviously the same. Am I missing something or would it be correct to have the default prefix instead of @prefix@? sed \ -e "s#/usr/local#$prefix#" \ < "$phpdir/phpize.m4" > configure.in Greetings, Stefan