Changeset 1015 for trunk/devel/run

Show
Ignore:
Timestamp:
07/20/2012 08:16:51 AM (10 months ago)
Author:
moo
Message:

fix dependency for includes.i

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/devel/run

    r1014 r1015  
    2121    find . -iname \*.c | while read -r sourceFile; do 
    2222        sourceFile=${sourceFile#./} 
     23        case "$sourceFile" in 
     24        includes.c) 
     25            echo -n "\$(XCACHE_INCLUDES_I) " 
     26            ;; 
     27        esac 
    2328        echo -n "\$(builddir)/${sourceFile%.c}.lo:" 
    2429        for dependency in $(gcc -M $sourceFile -I$HOME/test/php5-debug/include/php/{,main,Zend,TSRM} -I. -I${builddir} -MG | sed 's#.*:##g' | sed 's#\\##g'); do