From: brain Date: Thu, 19 May 2005 02:41:34 +0000 (+0000) Subject: Fixes to uname stuff X-Git-Tag: v2.0.23~10247 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=17f0f36b113469962f8e10a1c4d4f2df9c71f594;p=user%2Fhenk%2Fcode%2Finspircd.git Fixes to uname stuff git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1440 e03df62e-2008-0410-955e-edbf42e46eb7 --- diff --git a/configure b/configure index 27ee1f1ed..913d4950a 100755 --- a/configure +++ b/configure @@ -35,7 +35,10 @@ chomp($config{GCC34} = `gcc -dumpversion | cut -c 3`); # Minor GCC Ve chomp($config{OSNAME} = `/bin/uname -s`); # Operating System Name if (!$config{OSNAME}) { - $config{OSNAME} = "Unknown"; # For use when uname fails. + chomp($config{OSNAME} = `uname -s`); + if (!$config{OSNAME}) { + $config{OSNAME} = "Unknown"; + } } if (!$config{MAX_CLIENT_T}) {