From:             to2958 at sbc dot com
Operating system: AIX 4.3.3
PHP version:      5CVS-2005-12-15 (snap)
PHP Bug Type:     Informix related
Bug description:  OVERALL_TARGET uses += not = in Makefile.frag

Description:
------------
There is a += in the ext/informix/Makefile.frag for the OVERALL_TARGET
which I don't think is right. I've never seen this used in Makefiles
though I'm not an expert. This prevents make from working and gives me
this:
make: make 1254-025 There must be an existing description file or specify
a target.

When I do the patch below and simply replace the += with = the make runs
fine.

I didn't really see related bugs nor the use of += in other projects

Thanks


Reproduce code:
---------------
--- Makefile.frag.orig  Thu Dec 15 08:23:46 2005
+++ Makefile.frag       Thu Dec 15 08:24:01 2005
@@ -1,5 +1,5 @@
 
-OVERALL_TARGET += $(srcdir)/ifx.c
+OVERALL_TARGET = $(srcdir)/ifx.c
 
 $(srcdir)/ifx.c: $(srcdir)/ifx.ec
        (if test -d $(INFORMIXDIR); then \



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

Reply via email to