summaryrefslogtreecommitdiff
path: root/lang/erlang14/files/patch-ad
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2001-04-18 21:37:32 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2001-04-18 21:37:32 +0000
commit01a9f79f0a3692d8148990805beabc8593d3596d (patch)
tree99d1ef5788fc9e55b6948a7d4951ac4a315f63bf /lang/erlang14/files/patch-ad
parentNew index, rebuilt due to samba changes. (Gee, how many things (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_4_3_0'.release/4.3.0
Diffstat (limited to 'lang/erlang14/files/patch-ad')
-rw-r--r--lang/erlang14/files/patch-ad21
1 files changed, 0 insertions, 21 deletions
diff --git a/lang/erlang14/files/patch-ad b/lang/erlang14/files/patch-ad
deleted file mode 100644
index cb87f5b64db0..000000000000
--- a/lang/erlang14/files/patch-ad
+++ /dev/null
@@ -1,21 +0,0 @@
---- lib/os_mon/src/disksup.erl.orig Sat Dec 2 22:19:26 2000
-+++ lib/os_mon/src/disksup.erl Sat Dec 2 22:19:34 2000
-@@ -81,6 +81,9 @@
- check_disk_space(State) when State#state.os == {unix, solaris} ->
- Result = os:cmd("/usr/bin/df -lk"),
- check_disks_solaris(skip_to_eol(Result), State#state.threshold);
-+check_disk_space(State) when State#state.os == {unix, freebsd} ->
-+ Result = os:cmd("/bin/df -k -t ufs"),
-+ check_disks_solaris(skip_to_eol(Result), State#state.threshold);
- check_disk_space(State) when State#state.os == {unix, sunos4} ->
- Result = os:cmd("df"),
- check_disks_solaris(skip_to_eol(Result), State#state.threshold).
-@@ -162,6 +165,8 @@
- {4,_,_} -> {unix, sunos4};
- V -> exit({{unknown_os_version, V}, {disk_sup, get_os, []}})
- end;
-+ {unix, freebsd} ->
-+ {unix, freebsd};
- {win32,W} ->
- {win32,W};
- Type ->