summaryrefslogtreecommitdiff
path: root/scripts/credits
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/credits')
-rwxr-xr-xscripts/credits24
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