diff options
author | SVN Migration <svn@php.net> | 2001-08-08 15:06:09 +0000 |
---|---|---|
committer | SVN Migration <svn@php.net> | 2001-08-08 15:06:09 +0000 |
commit | 22909a77ef3489ef6be3c860d0002ea66c4436f0 (patch) | |
tree | 480ca7c565161cc36eddc9f8eee073ef10be3019 /scripts/credits | |
parent | 2f6cd308f9a8c53e0ce359603f4746b27bc32356 (diff) | |
download | php-git-PRE_METHOD_DEREFERENCE_PATCH.tar.gz |
This commit was manufactured by cvs2svn to create tagPRE_METHOD_DEREFERENCE_PATCH
'PRE_METHOD_DEREFERENCE_PATCH'.
Diffstat (limited to 'scripts/credits')
-rwxr-xr-x | scripts/credits | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/scripts/credits b/scripts/credits deleted file mode 100755 index 812658b40a..0000000000 --- a/scripts/credits +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -awkprog=' -BEGIN { FS = "\n"; 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 php4/scripts/credits from - the information found in the various php4/ext/.../CREDITS and - php4/sapi/.../CREDITS files - - if you want to change an entry you have to edit the appropriate - CREDITS file instead - -*/ - -END - awk "$awkprog" $what/*/CREDITS | sort -f >> $file -done |