Skip to content

Commit

Permalink
Implement $PERL6_HOME fallback in the JVM runner
Browse files Browse the repository at this point in the history
The fallback for the $PERL6_HOME env var was missing in the JVM runner
script.
  • Loading branch information
patrickbkr committed Aug 24, 2020
1 parent 038fbc4 commit c990124
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tools/build/create-jvm-runner.pl
Expand Up @@ -99,6 +99,7 @@
$preamble_unix,
": \${NQP_HOME:=\"\$DIR/../share/nqp\"}",
": \${NQP_JARS:=\"$nqpjars\"}",
": \${RAKUDO_HOME:=\"\$PERL6_HOME\"}",
": \${RAKUDO_HOME:=\"\$DIR/../share/perl6\"}",
": \${RAKUDO_JARS:=\"$rakudo_jars\"}",
"exec "
Expand All @@ -109,6 +110,7 @@
$preamble_unix,
": \${NQP_HOME:=\"$static_nqp_home\"}",
": \${NQP_JARS:=\"$nqpjars\"}",
": \${RAKUDO_HOME:=\"\$PERL6_HOME\"}",
": \${RAKUDO_HOME:=\"$static_rakudo_home\"}",
": \${RAKUDO_JARS:=\"$rakudo_jars\"}",
"exec "
Expand Down

0 comments on commit c990124

Please sign in to comment.