summaryrefslogtreecommitdiff
path: root/build-aux/update-copyright
diff options
context:
space:
mode:
authorFriedrich Haubensak <hsk@fli-leibniz.de>2015-07-02 14:36:33 +0100
committerPádraig Brady <P@draigBrady.com>2015-07-02 14:38:29 +0100
commit841d0dcfa8103235836a1aeb0c1ad657f43ade85 (patch)
tree9a00ba21f7cdad6680b2fd1be3ef4105cf11aafd /build-aux/update-copyright
parentea309033903c2ca235eb47a61905dc2cec7d39bb (diff)
downloadgnulib-841d0dcfa8103235836a1aeb0c1ad657f43ade85.tar.gz
update-copyright: fix test failure with perl >= 5.22
* build-aux/update-copyright: Escape a literal left curly bracket, required with perl >= 5.22
Diffstat (limited to 'build-aux/update-copyright')
-rwxr-xr-xbuild-aux/update-copyright2
1 files changed, 1 insertions, 1 deletions
diff --git a/build-aux/update-copyright b/build-aux/update-copyright
index 4eb4b93ea6..8cc36e22d5 100755
--- a/build-aux/update-copyright
+++ b/build-aux/update-copyright
@@ -124,7 +124,7 @@ use strict;
use warnings;
my $copyright_re = 'Copyright';
-my $circle_c_re = '(?:\([cC]\)|@copyright{}|\\\\\(co|&copy;)';
+my $circle_c_re = '(?:\([cC]\)|@copyright\{}|\\\\\(co|&copy;)';
my $holder = $ENV{UPDATE_COPYRIGHT_HOLDER};
$holder ||= 'Free Software Foundation, Inc.';
my $prefix_max = 5;