blob: ebf9509a93adc5211eeb9a79b3aa86c3a546f5eb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
--- Build.PL Mon Feb 20 10:02:49 2006
+++ Build.PL Mon Feb 20 10:03:57 2006
@@ -27,28 +27,4 @@
},
);
-my $categorizer = File::Spec->catfile('eg', 'categorizer');
-if ($build->y_n("Do you want to install the $categorizer script to $Config{installscript}?", 'n')) {
- $build->scripts($categorizer);
-}
-
-
-{
- my $path = $build->prompt
- (
- "\nIf you have the Weka system installed, please specify the path\n".
- "to the 'weka.jar' file, or '-' to search CLASSPATH, or '!' to skip:",
- '!'
- );
-
- if ($path eq '!') {
- unlink "classpath" if -e "classpath";
- } else {
- local *FH;
- open FH, "> classpath" or die "Can't create classpath: $!";
- print FH $path;
- close FH;
- }
-}
-
$build->create_build_script;
|