diff options
author | Jan Dubois <jand@activestate.com> | 2010-02-23 12:48:58 -0800 |
---|---|---|
committer | Jan Dubois <jand@activestate.com> | 2010-02-23 12:48:58 -0800 |
commit | 1369b85fd244c3fb26c30101219e97eb0ea12f24 (patch) | |
tree | cf57603ff3f1cee7765ffb3db78e778985a101f9 /Porting/bump-perl-version | |
parent | 3287f6c3a5c077096c5c7fc57423efca85e12336 (diff) | |
download | perl-1369b85fd244c3fb26c30101219e97eb0ea12f24.tar.gz |
Teach bump-perl-version about additional perl511 references in makedef.pl.
The previous version also missed 2 instances in win32/makefile.mk because
they were written as "perl511$(a)" instead of "perl511.o".
Diffstat (limited to 'Porting/bump-perl-version')
-rwxr-xr-x | Porting/bump-perl-version | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Porting/bump-perl-version b/Porting/bump-perl-version index a353ce9137..79518460e8 100755 --- a/Porting/bump-perl-version +++ b/Porting/bump-perl-version @@ -174,12 +174,12 @@ my @maps = ( undef, ], - # perl511.dll, perl511.lib, perl511s.lib + # perl511, perl511.dll, perl511.lib, perl511s.lib [ - qr{\b perl (\d\d\d) (s?) \. }x, - sub {$1, "perl$newx$newy$2." }, + qr{\b perl (\d\d\d) (s?) \b }x, + sub {$1, "perl$newx$newy$2" }, "$oldx$oldy", - qr/win32/, # README.win32, win32/* + qr/makedef|win32/, # makedef.pl, README.win32, win32/* ], ); |