Skip to content

Commit 13e2481

Browse files
haargbingos
authored andcommitted
WriteEmptyMakefile should produce the same target types as WriteMakefile
The target types created by WriteEmptyMakefile should match the ones created by WriteMakefile. This would ensure that any munging of the file to add rules could operate the same on each.
1 parent 85c3ff5 commit 13e2481

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

lib/ExtUtils/MakeMaker.pm

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -864,27 +864,27 @@ sub WriteEmptyMakefile {
864864
}
865865
open my $mfh, '>', $new or die "open $new for write: $!";
866866
print $mfh <<'EOP';
867-
all :
867+
all ::
868868
869869
manifypods :
870870
871-
subdirs :
871+
subdirs ::
872872
873-
dynamic :
873+
dynamic ::
874874
875-
static :
875+
static ::
876876
877-
clean :
877+
clean ::
878878
879-
install :
879+
install ::
880880
881881
makemakerdflt :
882882
883-
test :
883+
test ::
884884
885-
test_dynamic :
885+
test_dynamic ::
886886
887-
test_static :
887+
test_static ::
888888
889889
EOP
890890
close $mfh or die "close $new for write: $!";

0 commit comments

Comments
 (0)