Skip to content
Snippets Groups Projects
Commit 387c13c4 authored by Guillem Jover's avatar Guillem Jover
Browse files

dselect: Unconditionally load perl modules included in perl-base

In Debian and derivatives where the perl distribution is split into
a perl-base package which is always guaranteed to be installed, and a
perl-modules and perl packages, which are not, we do not need to
conditionally load these modules, as they will always be installed.

On other systems, when perl is installed these modules will always be
present so this change should not make any difference.

Changelog: internal
parent 61d4dc27
No related branches found
No related tags found
1 merge request!4Update crimson to version from bookworm
......@@ -19,11 +19,12 @@
use strict;
use warnings;
use File::Path qw(make_path remove_tree);
use File::Basename;
eval q{
pop @INC if $INC[-1] eq '.';
use Net::FTP;
use File::Path qw(make_path remove_tree);
use File::Basename;
use File::Find;
use Data::Dumper;
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment