From: Jason Greene Date: Wed, 13 Mar 2002 18:53:12 +0000 (+0000) Subject: Merge credits fixes X-Git-Tag: php-4.2.0RC1~41 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=72f7116854b3202fe4fd8fae8f97756c196e8dcb;p=php Merge credits fixes --- diff --git a/ext/overload/CREDITS b/ext/overload/CREDITS index 1746d5369e..31845154a6 100644 --- a/ext/overload/CREDITS +++ b/ext/overload/CREDITS @@ -1,2 +1,2 @@ User-space object overloading -Andrei Zmievski +Andrei Zmievski diff --git a/ext/w32api/CREDITS b/ext/w32api/CREDITS index e046aad54c..8d55cfc6b2 100644 --- a/ext/w32api/CREDITS +++ b/ext/w32api/CREDITS @@ -1,2 +1,2 @@ W32API -James Moore +James Moore diff --git a/scripts/credits b/scripts/credits index 2bc8eae67e..658580cdd7 100755 --- a/scripts/credits +++ b/scripts/credits @@ -20,5 +20,7 @@ do */ END - awk "$awkprog" $what/*/CREDITS | sort -f >> $file + # Do not process skeleton # + files=`find "$what" -name CREDITS | grep -v "$what"/skeleton/CREDITS` + awk "$awkprog" $files | sort -f >> $file done