sniper Sun Jan 1 19:01:04 2006 UTC Modified files: (Branch: PHP_4_4) /php-src/scripts/dev credits Log: MFH http://cvs.php.net/viewcvs.cgi/php-src/scripts/dev/credits?r1=1.1.2.1&r2=1.1.2.1.8.1&diff_format=u Index: php-src/scripts/dev/credits diff -u php-src/scripts/dev/credits:1.1.2.1 php-src/scripts/dev/credits:1.1.2.1.8.1 --- php-src/scripts/dev/credits:1.1.2.1 Tue Jan 28 15:02:08 2003 +++ php-src/scripts/dev/credits Sun Jan 1 19:01:04 2006 @@ -1,6 +1,6 @@ #!/bin/sh awkprog=' -BEGIN { FS = "\n"; RS = "" } +BEGIN { FS = "\n|\r\n|\r"; RS = "" } { print "CREDIT_LINE(\""$1"\", \""$2"\");" }' for what in ext sapi @@ -10,9 +10,9 @@ /* DO NOT EDIT THIS FILE! - it has been automaticaly created by php4/scripts/credits from - the information found in the various php4/ext/.../CREDITS and - php4/sapi/.../CREDITS files + 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 @@ -22,5 +22,5 @@ END # Do not process skeleton # files=`find "$what" -name CREDITS | grep -v "$what"/skeleton/CREDITS` - awk "$awkprog" $files | sort -f >> $file + awk "$awkprog" $files | sort -f | uniq >> $file done
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php