blob: df0e8010cc1335cb14da85980f566474301f118d (
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
32
33
34
35
36
37
|
--- INSTALL.orig Fri Apr 19 21:26:39 2002
+++ INSTALL Wed Oct 8 09:22:22 2003
@@ -73,7 +73,7 @@
}
-$uname = `/bin/uname -a`; chop $uname;
+$uname = `/usr/bin/uname -a`; chop $uname;
($u_os, $u_host, $u_osrel) = split(/\s+/, $uname);
# Try to find things in the usual places, but failing those,
@@ -122,6 +122,7 @@
if ( ! ( ($u_os eq "SunOS" && $u_osrel =~ /^5\./)
|| ($u_os eq "SunOS" && $u_osrel =~ /^4\./)
|| ($u_os eq "OSF1" && $u_osrel =~ /^V[34]\./)
+ || ($u_os eq "FreeBSD")
|| ($u_os eq "Linux")))
{
print STDERR <<MSG;
@@ -134,7 +135,7 @@
(press Return to continue with the install...)
MSG
- $ans = <STDIN>;
+# $ans = <STDIN>;
}
$cvs_versmsg = `cvs -v`;
@@ -151,7 +152,7 @@
$cvs_versmsg
(press Return to continue with the install...)
MSG
- $ans = <STDIN>;
+# $ans = <STDIN>;
}
}
|