Skip to content

Commit 250283c

Browse files
committed
[build] various MoarVM fixes
1 parent 7297c44 commit 250283c

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

Configure.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@
203203
$config{'make'} = $^O eq 'MSWin32' ? 'nmake' : 'make';
204204
$config{'runner'} = $^O eq 'MSWin32' ? 'nqp.bat' : 'nqp';
205205
fill_template_file(
206-
'tools/build/Makefile-common.in',
206+
'tools/build/Makefile-Moar.in',
207207
$MAKEFILE,
208208
%config,
209209
);

tools/build/Makefile-Moar.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ m-install: m-all
7474
M_CLEANUPS: *.moarvm gen/moar/*
7575

7676
m-clean:
77-
$(PERL) -MExtUtils::Command -e $(M_CLEANUPS)
77+
$(RM_RF) $(M_CLEANUPS)
7878

7979
$(M_STAGE1): $(M_STAGE1_OUTPUT)
8080

tools/build/Makefile-common.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ PERL = @perl@
9191
MKPATH = $(PERL) -MExtUtils::Command -e mkpath
9292
CHMOD = $(PERL) -MExtUtils::Command -e chmod
9393
CP = $(PERL) -MExtUtils::Command -e cp
94+
RM_RF = $(PERL) -MExtUtils::Command -e rm_rf
9495

9596
PREFIX = $(DESTDIR)@prefix@
9697
BIN_DIR = $(PREFIX)/bin

0 commit comments

Comments
 (0)