Skip to content

Commit

Permalink
single quote PATH in order to fix #114
Browse files Browse the repository at this point in the history
  • Loading branch information
stmuk committed Jul 3, 2018
1 parent 161fb6d commit 16eb5ed
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tools/build/Makefile.in
Expand Up @@ -56,13 +56,13 @@ modules-install: @backend_modules_install@

modules-install-j: rakudo-install
@echo "== Installing modules for JVM"
cd modules/zef && @path@ $(DESTDIR)$(PERL6_J_INSTALL) -Ilib bin/zef install ."
@path@ $(PERL) tools/build/module-install.pl $(PERL6_J_INSTALL) $(DESTDIR)$(SITE_BIN_DIR)/zef-j $(MODULES)"
cd modules/zef && '@path@' $(DESTDIR)$(PERL6_J_INSTALL) -Ilib bin/zef install ."
'@path@' $(PERL) tools/build/module-install.pl $(PERL6_J_INSTALL) $(DESTDIR)$(SITE_BIN_DIR)/zef-j $(MODULES)"

modules-install-m: rakudo-install
@echo "== Installing modules for MoarVM"
cd modules/zef && @path@ $(DESTDIR)$(PERL6_M_INSTALL) -Ilib bin/zef install ."
@path@ $(PERL) tools/build/module-install.pl $(PERL6_M_INSTALL) $(DESTDIR)$(SITE_BIN_DIR)/zef-m $(MODULES)"
cd modules/zef && '@path@' $(DESTDIR)$(PERL6_M_INSTALL) -Ilib bin/zef install ."
'@path@' $(PERL) tools/build/module-install.pl $(PERL6_M_INSTALL) $(DESTDIR)$(SITE_BIN_DIR)/zef-m $(MODULES)"

modules-test: @backend_modules_test@
verbose-modules-test: @backend_modules_test@
Expand Down

0 comments on commit 16eb5ed

Please sign in to comment.