| 
        php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits             
             [2005-05-30 08:33 UTC] sniper@php.net
  | 
    |||||||||||||||||||||||||||
            
                 
                Copyright © 2001-2025 The PHP GroupAll rights reserved.  | 
        Last updated: Tue Nov 04 13:00:02 2025 UTC | 
Description: ------------ In the Makefile the the variable 'bin_src_SCRIPTS' have no value which breaks the make install proccess. So see whats going wrong just remove the @ in the install-programs part. program: phpize program: php-config for prog in ; do \ echo " program: $prog"; \ /usr2/MIPS/php-src/build/shtool install -c -m 755 /usr2/MIPS/php-src/scripts/$prog /usr/nekoware-build/php5/bin/$prog; \ done program: shtool:install:Warning: source `/usr2/MIPS/php-src/scripts/' is a directory - skipped To bypass the problem you can wrap some " " around the bin_src_SCRIPTS variable. Problems exits in php5 head and in the snapshot. PHP4.3.11 compiles fine and can be installed without a problem. Reproduce code: --------------- ./configure --disable-all --prefix=/tmp/php5 gmake && gmake install Expected result: ---------------- a propper installation Actual result: -------------- make install stops with a error for prog in ; do \ echo " program: $prog"; \ /usr2/MIPS/php-src/build/shtool install -c -m 755 /usr2/MIPS/php-src/scripts/$prog /usr/nekoware-build/php5/bin/$prog; \ done /bin/sh: syntax error at line 1 : `;' unexpected