update-copyright (automake-1.16.2.tar.xz) | : | update-copyright (automake-1.16.3.tar.xz) | ||
---|---|---|---|---|
skipping to change at line 136 | skipping to change at line 136 | |||
# on systems that are compliant to a POSIX version before POSIX:2017. | # on systems that are compliant to a POSIX version before POSIX:2017. | |||
# On such systems, the usual invocation of an executable through execlp() | # On such systems, the usual invocation of an executable through execlp() | |||
# or execvp() fails with ENOEXEC if it is a script that does not start | # or execvp() fails with ENOEXEC if it is a script that does not start | |||
# with a #! line. The script interpreter mentioned in the #! line has | # with a #! line. The script interpreter mentioned in the #! line has | |||
# to be /bin/sh, because on GuixSD systems that is the only program that | # to be /bin/sh, because on GuixSD systems that is the only program that | |||
# has a fixed file name. The second line is essential for perl and is | # has a fixed file name. The second line is essential for perl and is | |||
# also useful for editing this file in Emacs. The next two lines below | # also useful for editing this file in Emacs. The next two lines below | |||
# are valid code in both sh and perl. When executed by sh, they re-execute | # are valid code in both sh and perl. When executed by sh, they re-execute | |||
# the script through the perl program found in $PATH. The '-x' option | # the script through the perl program found in $PATH. The '-x' option | |||
# is essential as well; without it, perl would re-execute the script | # is essential as well; without it, perl would re-execute the script | |||
# through /bin/sh. When executed by perl, the next two lines are a no-op. | # through /bin/sh. When executed by perl, the next two lines are a no-op. | |||
eval 'exec perl -wSx -0777 -pi "$0" "$@"' | eval 'exec perl -wSx -0777 -pi "$0" "$@"' | |||
if 0; | if 0; | |||
my $VERSION = '2018-03-07.03:47'; # UTC | my $VERSION = '2020-04-04.15:07'; # UTC | |||
# The definition above must lie within the first 8 lines in order | # The definition above must lie within the first 8 lines in order | |||
# for the Emacs time-stamp write hook (at end) to update it. | # for the Emacs time-stamp write hook (at end) to update it. | |||
# If you change this file with Emacs, please let the write hook | # If you change this file with Emacs, please let the write hook | |||
# do its job. Otherwise, update this string manually. | # do its job. Otherwise, update this string manually. | |||
use strict; | use strict; | |||
use warnings; | use warnings; | |||
my $copyright_re = 'Copyright'; | my $copyright_re = 'Copyright'; | |||
my $circle_c_re = '(?:\([cC]\)|@copyright\{}|\\\\\(co|©|©)'; | my $circle_c_re = '(?:\([cC]\)|@copyright\{}|\\\\\(co|©|©)'; | |||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added |