Skip to content

Commit 3297a2d

Browse files
committed
general neatness for 5.36 work
1 parent 9a5e466 commit 3297a2d

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

devel.utils/_build-5.36.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
set SP=z:\sp532
77
set PATH=%SP%\c\bin;%SP%\perl\bin;%SP%\perl\site\bin;%PATH%
88

9-
set SKIP_MSI_STEP=
10-
set SKIP_PDL_STEP=
9+
set SKIP_MSI_STEP=1
10+
set SKIP_PDL_STEP=1
1111
perl -Mblib ..\script\perldist_strawberry -job ..\share\64bit-5.36.0.1.pp -test_core -beta=0 -nointeractive -norestorepoints -wixbin_dir=z:\sw\wix311 -cpan_url https://cpan.metacpan.org
1212

1313

lib/Perl/Dist/Strawberry/Step.pm

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,11 @@ sub backup_file {
288288

289289
sub _patch_file {
290290
my ($self, $new, $dst, $dir, $tt_vars, $no_backup) = @_;
291+
$self->boss->message(5, "PATCHING '$new' '$dst' '$dir' $tt_vars $no_backup\n");
291292

293+
if ($dst =~ /\*$/) {
294+
warn "WE IS PATCHIN '$new'";
295+
}
292296
if (!-f $new) {
293297
warn "ERROR: non-existing file '$new'";
294298
}
@@ -462,7 +466,7 @@ sub _install_module {
462466
# Execute the module install script
463467
my $rv = $self->execute_special(['perl', $script_pl, %params], $log, $log, $env);
464468
unless(defined $rv && $rv == 0) {
465-
rename $log, catfile($self->global->{debug_dir}, "mod_install_FAIL_".$now."_".$shortname.".log.txt");
469+
rename $log, catfile($self->global->{debug_dir}, "mod_install_${shortname}_FAIL_${now}.log.txt");
466470
return [], $rv;
467471
}
468472
my $data = retrieve($nstore_file) or die "ERROR: retrieve failed";
@@ -515,4 +519,5 @@ sub _apply_patch {
515519
}
516520
}
517521

518-
1;
522+
1;
523+

0 commit comments

Comments
 (0)