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 | b9eb808bf2e5f0ab5cfd1dc7410f3c457a18f6d1 (patch) | |
tree | 6b2cc9ee5a82afb277c9a7e472a283e97449a4b3 | |
parent | c742d1dbe759f4c1e3304e5fbca88e061f64978f (diff) | |
download | postgresql-b9eb808bf2e5f0ab5cfd1dc7410f3c457a18f6d1.tar.gz postgresql-b9eb808bf2e5f0ab5cfd1dc7410f3c457a18f6d1.zip |
Fix spacing in copyright.pl after being run with missing regex slash
(now added).
Backpatch to 9.2.
-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 a55228d6ec8..26343af97de 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 |