Browse Source

"Andreas V. Meier" <avmeier@web.de>:

linux) but uname returns 'Linux'.
It is most probably already fixed in the latest developer release, but
our current version is still labeled 'recommended beta'.
So until then, I propose the following patch:


git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@1744 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc
rocklinux
Rene Rebe 21 years ago
parent
commit
e75c2c58ef
2 changed files with 13 additions and 0 deletions
  1. +1
    -0
      Documentation/Developers/CHANGELOG-RENE
  2. +12
    -0
      package/nikolaus/unison/unison-Linux.patch

+ 1
- 0
Documentation/Developers/CHANGELOG-RENE

@ -7,6 +7,7 @@
- fixed apache to use the same bdb as subversion does (need config option)
- fixed xfree86 cron job
- Sebastian Jaenicke: updated opera, maildrop and ntp
- Andreas V. Meier: fixed nikolaus/unison to parse the uname output correctly
*) 2003-11-10 (2.0.0-rc2 - 2.0.0-rc3)

+ 12
- 0
package/nikolaus/unison/unison-Linux.patch

@ -0,0 +1,12 @@
diff -ruN unison-2.9.20/ubase/util.ml unison-2.9.20-avm/ubase/util.ml
--- unison-2.9.20/ubase/util.ml 2002-08-19 23:15:04.000000000 +0200
+++ unison-2.9.20-avm/ubase/util.ml 2003-11-10 22:46:21.000000000 +0100
@@ -217,7 +217,7 @@
close_in c;
match l with
"Darwin" -> true
- | "linux" | "FreeBSD" | "SunOS" -> false
+ | "Linux" | "FreeBSD" | "SunOS" -> false
| _ ->
Printf.printf
"Warning: 'uname' returned unrecognized result (%s) in Util.isOSX.\n"

Loading…
Cancel
Save