44 lines
1.2 KiB
Diff
44 lines
1.2 KiB
Diff
From 7fb8bf6b9bd4b199baaa0209061af0ccc11d30d9 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
|
|
Date: Mon, 8 Jul 2013 16:10:38 +0200
|
|
Subject: [PATCH] Suppress system Term::ReadLine::Gnu
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
perl5db.t will die in Term::ReadLine if Term::ReadLine::Gnu is installed
|
|
in the system. Let's favour core implementation.
|
|
|
|
Best solution would be to prune @INC to prevent from loading already
|
|
installed modules like this:
|
|
|
|
BEGIN {
|
|
use Config;
|
|
@INC = grep { ! /^\Q$Config{installprefix}\E(\/|\z)/ } @INC;
|
|
}
|
|
|
|
However that is not possible (now) due to various execs (even without
|
|
proper -I) in the harness chain. perl should implement -nostdinc
|
|
option.
|
|
|
|
Signed-off-by: Petr Písař <ppisar@redhat.com>
|
|
---
|
|
lib/perl5db.t | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/lib/perl5db.t b/lib/perl5db.t
|
|
index 0e507b2..67cdd24 100644
|
|
--- a/lib/perl5db.t
|
|
+++ b/lib/perl5db.t
|
|
@@ -26,6 +26,7 @@ BEGIN {
|
|
print "1..0 # Skip: \$ENV{PERL5DB} is already set to '$ENV{PERL5DB}'\n";
|
|
exit 0;
|
|
}
|
|
+ $ENV{PERL_RL} = 'Perl'; # Suppress system Term::ReadLine::Gnu
|
|
}
|
|
|
|
plan(116);
|
|
--
|
|
1.8.1.4
|
|
|