Hello,
I notice that I didn't actually attach the patch in my first mail, so
here it is ;)
Basically, it just moves the case when uname -s returns 'GNU' from Linux
to GNU.
Best regards,
Chris
--
,''`. Christopher `Physicman' Bodenstein <cb@???>
: :' : Physicman.Net : http://www.physicman.net/
`. `' Debian GNU/Linux : http://www.debian.org/
`- Debian IPv6 : http://debian.fabbione.net/
--- exim-4.50.orig/scripts/os-type 2005-02-17 15:49:11.000000000 +0100
+++ exim-4.50/scripts/os-type 2005-03-18 17:35:53.000000000 +0100
@@ -23,7 +23,8 @@ case "$os" in '') os=`uname -s`;; esac
# Identify Glibc systems under different names.
-case "$os" in GNU|GNU/*|Linux) os=Linux;; esac
+case "$os" in GNU) os=GNU;; esac
+case "$os" in GNU/*|Linux) os=Linux;; esac
# It is believed that all systems respond to uname -s, but just in case
# there is one that doesn't, use the shell's $OSTYPE variable. It is known