From d487cd85d848bec3363e3d6dfe807f0fa776510e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20B=C3=B6ker?= Date: Sun, 22 Sep 2019 15:57:33 +0200 Subject: [PATCH] Fix `silent-build` build failure The $cfg->options hash was not used before, so the error didn't show up earlier. --- Configure.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Configure.pl b/Configure.pl index f948a454634..28216553d42 100755 --- a/Configure.pl +++ b/Configure.pl @@ -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', @@ -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();