Skip to content

Commit

Permalink
Fix silent-build build failure
Browse files Browse the repository at this point in the history
The $cfg->options hash was not used before, so the error didn't show up
earlier.
  • Loading branch information
PatZim committed Sep 22, 2019
1 parent c4e8048 commit d487cd8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Configure.pl
Expand Up @@ -62,7 +62,7 @@ BEGIN
$config->{$config_status} = join ' ', map { qq("$_") } @ARGV;

GetOptions(
$cfg->options,
%{$cfg->options},
'help!', 'prefix=s',
'perl6-home=s', 'nqp-home=s',
'sysroot=s', 'sdkroot=s',
Expand All @@ -76,7 +76,7 @@ BEGIN
'rakudo-repo=s', 'nqp-repo=s',
'moar-repo=s', 'roast-repo=s',
'expand=s', 'out=s',
'set-var=s@', 'silent-build!'
'set-var=s@',
)
or do {
print_help();
Expand Down

0 comments on commit d487cd8

Please sign in to comment.