aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Rehsack <sno@netbsd.org>2015-11-22 14:43:13 +0100
committerJens Rehsack <sno@netbsd.org>2015-11-22 14:43:13 +0100
commit72d52f2982809df3576ef47da604e1656f47a63e (patch)
tree27bba78b5e71c541e89ff117c87ffe76333df375
parent2a70ed792f883b8340099d74b2f325b2ca01616b (diff)
tools/build: fix Makefile.in to deal with optional empty arguments or locations with spaces
Fixes embedded toolchains are invoked correctly when arguments are empty or contain spaces Signed-off-by: Jens Rehsack <sno@netbsd.org>
-rw-r--r--tools/build/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/build/Makefile.in b/tools/build/Makefile.in
index 68e20c6..735da6c 100644
--- a/tools/build/Makefile.in
+++ b/tools/build/Makefile.in
@@ -42,7 +42,7 @@ rakudo: @backend_exes@
@backend_exes@:
@echo "== Configuring and building Rakudo"
- cd $(RAKUDO_DIR) && $(PERL) Configure.pl --sysroot=$(SYSROOT_DIR) --sdkroot=$(SDKROOT_DIR) --prefix=$(PREFIX_DIR) --backends=@backends@ && $(MAKE)
+ cd $(RAKUDO_DIR) && $(PERL) Configure.pl --sysroot="$(SYSROOT_DIR)" --sdkroot="$(SDKROOT_DIR)" --prefix="$(PREFIX_DIR)" --backends=@backends@ && $(MAKE)
rakudo-test: rakudo
cd $(RAKUDO_DIR) && $(MAKE) test