blob: 7192cdeb85b258acc6726a46f18f99a317cda863 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
$NetBSD: patch-aa,v 1.3 2003/12/10 22:38:41 heinz Exp $
--- Makefile.PL.orig Sun Oct 26 06:36:09 2003
+++ Makefile.PL
@@ -101,12 +101,8 @@ that try to query live nameservers.
EOT
- if (prompt("Do you want to enable these tests?", "y") =~ /^y/i) {
- open(ENABLED, ">t/online.enabled") || die "Can't touch ./t/online.enabled $!";
- close(ENABLED);
- } else {
- unlink("t/online.enabled"); # just to be shure...
- }
+ open(ENABLED, ">t/online.enabled") || die "Can't touch ./t/online.enabled $!";
+ close(ENABLED);
} else {
unlink("t/online.enabled"); # just to be shure...
}
|