From 9167ca2a2d7d15c95f94b3d1f91a6d07f650bdbd Mon Sep 17 00:00:00 2001 From: brain Date: Thu, 19 May 2005 02:46:22 +0000 Subject: [PATCH] Frigging thing git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1443 e03df62e-2008-0410-955e-edbf42e46eb7 --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"; } -- 2.39.5