summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-05-19 02:46:22 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-05-19 02:46:22 +0000
commit9167ca2a2d7d15c95f94b3d1f91a6d07f650bdbd (patch)
tree1a3de2b8597f5f77f0b77b8400e8566d5c3379a2 /configure
parent92f04e0241ae8891e939aa22547d0707de3986a6 (diff)
Frigging thing
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1443 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files 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";
}