summaryrefslogtreecommitdiff
path: root/Porting/add-package.pl
diff options
context:
space:
mode:
authorxenu <me@xenu.pl>2021-01-28 13:49:52 +0100
committerGitHub <noreply@github.com>2021-01-28 12:49:52 +0000
commit76b7a9755884361239145cf00fcfc17625a42a1a (patch)
treea6304003d89915b3723c156b26d05621268d3a04 /Porting/add-package.pl
parent341a561fb3c3b40f8730c0c5da27a1ea1136d781 (diff)
downloadperl-76b7a9755884361239145cf00fcfc17625a42a1a.tar.gz
win32: remove makefile.mk (#18511)
Makefile.mk is redundant with GNUmakefile. See https://www.nntp.perl.org/group/perl.perl5.porters/2021/01/msg258848.html for more details. We planned to remove it shortly after the introduction of GNUmakefile but that slipped through the cracks for some reason: https://github.com/Perl/perl5/issues/14341
Diffstat (limited to 'Porting/add-package.pl')
-rwxr-xr-xPorting/add-package.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/Porting/add-package.pl b/Porting/add-package.pl
index 012aa77894..af04c8f8be 100755
--- a/Porting/add-package.pl
+++ b/Porting/add-package.pl
@@ -319,11 +319,11 @@ my @ChangedFiles;
}
}
- ### add entries to win32/Makefile and win32/makefile.mk
+ ### add entries to win32/Makefile
### they contain the following lines:
# ./win32/makefile.mk: ..\utils\ptardiff \
# ./win32/makefile.mk: xsubpp instmodsh prove ptar ptardiff
- for my $file ( qw[win32/Makefile win32/makefile.mk] ) {
+ for my $file ( qw[win32/Makefile] ) {
unless ( `grep $bin $Repo/$file` ) {
print " Adding $bin entries to $file..." if $Verbose;