File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / scripts / dev / credits
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:48:06 2012 UTC (12 years, 5 months ago) by misho
Branches: php, MAIN
CVS tags: v5_4_3elwix, v5_4_29p0, v5_4_29, v5_4_20p0, v5_4_20, v5_4_17p0, v5_4_17, v5_3_10, HEAD
php

#!/bin/sh
awkprog='
BEGIN { FS = "\n|\r\n|\r"; RS = "" }
{ print "CREDIT_LINE(\""$1"\", \""$2"\");" }'

for what in ext sapi
do
  file=ext/standard/credits_$what.h
  cat >$file <<END
/* 
                      DO NOT EDIT THIS FILE!

 it has been automaticaly created by php5/scripts/credits from  
 the information found in the various php5/ext/.../CREDITS and
 php5/sapi/.../CREDITS files 
 
 if you want to change an entry you have to edit the appropriate 
 CREDITS file instead

*/

END
  # Do not process skeleton #
  files=`find "$what" -name CREDITS | grep -v "$what"/skeleton/CREDITS`
  awk "$awkprog" $files | sort -f | uniq >> $file
  echo "Updated $file"
done

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>