aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Configure.pl1
-rw-r--r--tools/build/Makefile.in2
2 files changed, 2 insertions, 1 deletions
diff --git a/Configure.pl b/Configure.pl
index 82227ff..a6482dd 100644
--- a/Configure.pl
+++ b/Configure.pl
@@ -119,6 +119,7 @@ MAIN: {
}
}
+ $config{backends} = join ',', keys %backends;
$config{backend_exes} = join ' ', map
{ '$(RAKUDO_DIR)/$(PERL6_' . uc(substr $_, 0, 1) . '_EXE)' }
keys %backends;
diff --git a/tools/build/Makefile.in b/tools/build/Makefile.in
index 282cadd..7311ee8 100644
--- a/tools/build/Makefile.in
+++ b/tools/build/Makefile.in
@@ -50,7 +50,7 @@ rakudo: @backend_exes@
@backend_exes@:
@echo "== Configuring and building Rakudo"
- cd $(RAKUDO_DIR) && $(PERL) Configure.pl --prefix=$(PREFIX_DIR) && $(MAKE)
+ cd $(RAKUDO_DIR) && $(PERL) Configure.pl --prefix=$(PREFIX_DIR) --backends=@backends@ && $(MAKE)
rakudo-test: rakudo
cd $(RAKUDO_DIR) && $(MAKE) test