From:             behrens at takenet dot de
Operating system: IRIX 6.5.27
PHP version:      5CVS-2005-05-27 (dev)
PHP Bug Type:     Compile Failure
Bug description:  bin_src_SCRIPTS in the Makefile have no value

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

-- 
Edit bug report at http://bugs.php.net/?id=33166&edit=1
-- 
Try a CVS snapshot (php4):   http://bugs.php.net/fix.php?id=33166&r=trysnapshot4
Try a CVS snapshot (php5.0): 
http://bugs.php.net/fix.php?id=33166&r=trysnapshot50
Try a CVS snapshot (php5.1): 
http://bugs.php.net/fix.php?id=33166&r=trysnapshot51
Fixed in CVS:                http://bugs.php.net/fix.php?id=33166&r=fixedcvs
Fixed in release:            http://bugs.php.net/fix.php?id=33166&r=alreadyfixed
Need backtrace:              http://bugs.php.net/fix.php?id=33166&r=needtrace
Need Reproduce Script:       http://bugs.php.net/fix.php?id=33166&r=needscript
Try newer version:           http://bugs.php.net/fix.php?id=33166&r=oldversion
Not developer issue:         http://bugs.php.net/fix.php?id=33166&r=support
Expected behavior:           http://bugs.php.net/fix.php?id=33166&r=notwrong
Not enough info:             
http://bugs.php.net/fix.php?id=33166&r=notenoughinfo
Submitted twice:             
http://bugs.php.net/fix.php?id=33166&r=submittedtwice
register_globals:            http://bugs.php.net/fix.php?id=33166&r=globals
PHP 3 support discontinued:  http://bugs.php.net/fix.php?id=33166&r=php3
Daylight Savings:            http://bugs.php.net/fix.php?id=33166&r=dst
IIS Stability:               http://bugs.php.net/fix.php?id=33166&r=isapi
Install GNU Sed:             http://bugs.php.net/fix.php?id=33166&r=gnused
Floating point limitations:  http://bugs.php.net/fix.php?id=33166&r=float
No Zend Extensions:          http://bugs.php.net/fix.php?id=33166&r=nozend
MySQL Configuration Error:   http://bugs.php.net/fix.php?id=33166&r=mysqlcfg

Reply via email to