summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
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";
}