diff options
author | Bruce Momjian <bruce@momjian.us> | 2012-07-06 10:57:08 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2012-07-06 10:57:08 -0400 |
commit | 06850473fb7f8ef0b8be31ec4602fcc161ad0b36 (patch) | |
tree | fff1fe3afdcc16bda9f38f7b8c36177b51b34bc2 /src | |
parent | 75d5e54f78e9a230855e018b2b38a22a65341511 (diff) | |
download | postgresql-06850473fb7f8ef0b8be31ec4602fcc161ad0b36.tar.gz postgresql-06850473fb7f8ef0b8be31ec4602fcc161ad0b36.zip |
Fix spacing in copyright.pl after being run with missing regex slash
(now added).
Backpatch to 9.2.
Diffstat (limited to 'src')
-rwxr-xr-x | src/tools/copyright.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/copyright.pl b/src/tools/copyright.pl index 524f285b6a9..932f0a2854f 100755 --- a/src/tools/copyright.pl +++ b/src/tools/copyright.pl @@ -46,7 +46,7 @@ sub wanted { # We only care about lines with a copyright notice. - next unless $line =~ m/$cc . *$pgdg /; + next unless $line =~ m/$cc.*$pgdg/; # We stop when we've done one substitution. This is both for # efficiency and, at least in the case of this program, for |