aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsrc/tools/copyright5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/tools/copyright b/src/tools/copyright
index 8a7680efb33..cd568f58f9c 100755
--- a/src/tools/copyright
+++ b/src/tools/copyright
@@ -1,5 +1,4 @@
-rgrepc -l 'Copyright.*Regents' | while read FILE
+rgrepc -l 'Copyright.*PostgreSQL Global Development Group' | while read FILE
do
- pipe sed 's/^\(.*\)\(Copyright.*Regents.*\)$/ * Portions Copyright (c) 1996-1999, PostgreSQL Global Development Group\
-\1Portions \2/g' $FILE
+ pipe sed 's/^\(.*Portions Copyright (c) 1996-\)[0-9]*\(, PostgreSQL Global Development Group/\12003\2/g' $FILE
done