php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #33166 bin_src_SCRIPTS in the Makefile have no value
Submitted: 2005-05-27 23:58 UTC Modified: 2005-05-30 08:33 UTC
From: behrens at takenet dot de Assigned: sniper (profile)
Status: Closed Package: Compile Failure
PHP Version: 5CVS-2005-05-27 (dev) OS: IRIX 6.5.27
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: behrens at takenet dot de
New email:
PHP Version: OS:

 

 [2005-05-27 23:58 UTC] behrens at takenet dot de
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

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2005-05-30 08:33 UTC] sniper@php.net
This bug has been fixed in CVS.

Snapshots of the sources are packaged every three hours; this change
will be in the next snapshot. You can grab the snapshot at
http://snaps.php.net/.
 
Thank you for the report, and for helping us make PHP better.


 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Fri Jul 04 16:01:36 2025 UTC