Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions lib/ExtUtils/MakeMaker.pm
Original file line number Diff line number Diff line change
Expand Up @@ -864,27 +864,27 @@ sub WriteEmptyMakefile {
}
open my $mfh, '>', $new or die "open $new for write: $!";
print $mfh <<'EOP';
all :
all ::

manifypods :

subdirs :
subdirs ::

dynamic :
dynamic ::

static :
static ::

clean :
clean ::

install :
install ::

makemakerdflt :

test :
test ::

test_dynamic :
test_dynamic ::

test_static :
test_static ::

EOP
close $mfh or die "close $new for write: $!";
Expand Down
Loading