diff options
-rw-r--r-- | perl-install/any.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index 2420e6979..39f68738c 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -1034,7 +1034,8 @@ You can use userdrake to add a user in this group.") sub ddcxinfos { return if $::noauto; - my @l = `$ENV{LD_LOADER} ddcxinfos`; + my @l; + run_program::raw({ timeout => 20 }, 'ddcxinfos', '>', \@l); if ($::isInstall && -e "/tmp/ddcxinfos") { my @l_old = cat_("/tmp/ddcxinfos"); if (@l < @l_old) { |