From: brain Date: Thu, 19 May 2005 02:46:22 +0000 (+0000) Subject: Frigging thing X-Git-Tag: v2.0.23~10244 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=9167ca2a2d7d15c95f94b3d1f91a6d07f650bdbd;p=user%2Fhenk%2Fcode%2Finspircd.git Frigging thing git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1443 e03df62e-2008-0410-955e-edbf42e46eb7 --- diff --git a/configure b/configure index 49d0bd296..8d97ab868 100755 --- a/configure +++ b/configure @@ -32,12 +32,12 @@ $config{USE_EPOLL} = "y"; # epoll enabled chomp($config{MAX_CLIENT_T} = `sh -c \"ulimit -n\"`); # FD Limit chomp($config{GCCVER} = `gcc -dumpversion | cut -c 1`); # Major GCC Version chomp($config{GCC34} = `gcc -dumpversion | cut -c 3`); # Minor GCC Version -chomp($config{OSNAME} = `/bin/uname -s`); # Operating System Name +chomp($config{OSNAME} = `/bin/uname`); # Operating System Name print "OSN: '" . $config{OSNAME} . "'\n"; if (!$config{OSNAME}) { - chomp($config{OSNAME} = `/usr/bin/uname -s`); + chomp($config{OSNAME} = `/usr/bin/uname`); if ($config{OSNAME}) { $config{OSNAME} = "Unknown"; }