blob: b9ff2e5e66b45ecbd9c6d3df469b0dd90bda7dd5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- Makefile.PL.orig 2006-01-04 15:18:10 UTC
+++ Makefile.PL
@@ -3,7 +3,7 @@ use ExtUtils::MakeMaker qw(prompt WriteM
use File::Path;
require 5.8.0;
-my $choice;
+my $choice = 3;
while (!$choice) {
$reply = prompt(
"\nWhat do you want to build?\n\n" .
@@ -23,8 +23,6 @@ my @extlib = ();
push @extlib,'Freesubs' if $choice >= 2;
push @extlib,'RPC' if $choice >= 3;
-print "\n";
-setup_sitedefs() if prompt("Do you want to install Ace::Browser? ","n") =~ /[yY]/;
my $headers = "./acelib/wh";
WriteMakefile(
|