File tree 2 files changed +22
-0
lines changed
2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,11 @@ for, noteworthy changes.
8
8
- Moose::Manual::Construction now notes that roles can modify the BUILD sub.
9
9
(thanks, E. Choroba!)
10
10
11
+ [OTHER]
12
+
13
+ - adjustments have been made to the Makefile for 'bmake', so it now works
14
+ when not run in compatibility mode (Leon Timmermans).
15
+
11
16
2.2010 2018-02-16
12
17
13
18
[OTHER]
Original file line number Diff line number Diff line change @@ -52,6 +52,23 @@ package MY;
52
52
53
53
use Config;
54
54
55
+ # These two are necessary to keep bmake happy
56
+ sub xs_c {
57
+ my $self = shift;
58
+ my $ret = $self->SUPER::xs_c(@_);
59
+ $ret =~ s/\$\*\.xs/\$</g;
60
+ $ret =~ s/\$\*\.c\b/\$@/g;
61
+ return $ret;
62
+ }
63
+
64
+ sub c_o {
65
+ my $self = shift;
66
+ my $ret = $self->SUPER::c_o(@_);
67
+ $ret =~ s/\$\*\.c\b/\$</g;
68
+ $ret =~ s/\$\*\$\(OBJ_EXT\)/\$@/g;
69
+ return $ret;
70
+ }
71
+
55
72
sub const_cccmd {
56
73
my $ret = shift->SUPER::const_cccmd(@_);
57
74
return q{} unless $ret;
You can’t perform that action at this time.
0 commit comments