blob: edf985eb992074976e16f5539b113ace0bddb1a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
$NetBSD: patch-ab,v 1.8 2020/04/27 17:57:52 bouyer Exp $
--- src/sbin/sympa_wizard.pl.in.orig 2019-01-29 09:00:03.000000000 +0100
+++ src/sbin/sympa_wizard.pl.in 2020-04-26 12:37:28.779196610 +0200
@@ -38,11 +38,10 @@
use Sympa::ConfDef;
use Sympa::Constants;
-my $with_CPAN; # check if module "CPAN" installed.
+my $with_CPAN = 0; # check if module "CPAN" installed.
my $modfail; # any of required modules are not installed.
BEGIN {
- $with_CPAN = eval { require CPAN; };
$modfail = !eval {
require Conf;
require Sympa::Language;
|