diff options
Diffstat (limited to 'perl-install/install_any.pm')
-rw-r--r-- | perl-install/install_any.pm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index 3b1600dd9..10af86be3 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -1140,6 +1140,14 @@ sub log_sizes { formatXiB(sum(run_program::rooted_get_stdout($o->{prefix}, 'rpm', '-qa', '--queryformat', '%{size}\n')))) if -x "$o->{prefix}/bin/rpm"; } +sub X_options_from_o { + my ($o) = @_; + { + freeDriver => $o->{freeDriver}, + allowFB => $o->{allowFB}, + }; +} + sub copy_advertising { my ($o) = @_; |